:root
jquery 选择器
设置 html 文档的背景颜色为黄色:
$(":root").css("background-color","yellow");
:root 选择器选取文档的根元素。
在 html 中,根元素总是 元素。
$(":root")