当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


jQuery :root用法及代码示例


jQuery中的:root选择器用于选择文档的根元素。

用法:

$(":root")

参数:该选择器包含单个参数root,它是文档的根元素。



Example:本示例使用:根选择器选择文档并将背景色设置为绿色。

<!DOCTYPE html> 
<html> 
  
<head>  
    <title> 
        jQuery:root Selector 
    </title> 
        
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
</head>  
  
<body style = "text-align:center;"> 
      
    <h1>GeeksForGeeks</h1> 
      
    <h2>jQuery:root Selector</h2> 
      
    <!-- Script uses:root selector -->
    <script> 
        $(document).ready(function() { 
            $(":root").css("background-color", "green"); 
        }); 
    </script> 
</body> 
  
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 jQuery | :root Selector。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。