加载中...

:root1.9+


概述    root selector

返回值:jQuery

描述:选择该文档的根元素。

  • V : 1.9jQuery( ":root" )

在HTML中,文档的根元素,和$(":root")选择的元素一样, 永远是<html>元素。

示例

设置<html>背景颜色为黄色

$(":root").css("background-color","yellow");

实例

显示根元素的标签名。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>root demo</title>
  <style>
  span.fot {
    color: red;
    font-size: 120%;
    font-style: italic;
  }
  </style>
  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
 
<div id="log">The root of this document is: </div>
 
<script>
$( "<b></b>" ).html( $( ":root" )[ 0 ].nodeName ).appendTo( "#log" );
</script>
 
</body>
</html>

运行一下


还没有评论.