JS 修改Sass变量

580 阅读1分钟

先在scss中定义变量:

$table_Header_height: var(--header--height);

在根节点中引入:

:root {  --header--height: 170px;}

其他样式使用变量:

div{    position: sticky !important;  }

在js中修改:

document.getElementsByTagName('body')[0].style.setProperty('--header--height', `${height}px`)

相当于在根节点中存放了这个变量 然后在js中可以进行修改