var root=document.querySelector(":root")
//获取
var bgColor= getComputedStyle(root).getPropertyValue("--bg-color")
console.log(bgColor)
//设置
root.style.setProperty("--bg-color","#1EB3635E")
获取:root 的值和设置值
最新推荐文章于 2024-04-17 16:04:38 发布