jQuer 選擇器
:root選擇器選擇文檔的根元素(始終為<html>)。
$(":root")
選擇根元素:
$(document).ready(function(){ $(":root").css("background", "lightgreen"); });