jQuery :root 选择器

实例

将 HTML 文档的背景色设置为黄色:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $(":root").css("background-color", "yellow");
  8. });
  9. </script>
  10. </head>
  11. <body>
  12. <h1>这是一个标题</h1>
  13. </body>
  14. </html>

定义与用法

:root 选择器选择文档的根元素。

在 HTML 中, 根元素永远是 <html> 元素。


语法

  1. $(&quot;:root")

分类导航