📜  如何在 JS 中访问页面样式 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:01.637000             🧑  作者: Mango

代码示例1
// if you want to access the style of all the page i suggest doing this:

const GetPageStyle= ()=>{
  return document.querySelector(":root").style;
}