CSS 使用 JavaScript 更改变量

使用 JavaScript 更改变量

CSS 变量可以访问 DOM,这意味着您可以通过 JavaScript 更改它们。

这个例子说明了如何创建脚本来显示并更改上一页中使用的示例中的 —blue 变量。此刻,如果您不熟悉 JavaScript,不要担心。您可以在我们的 JavaScript 教程中学到有关 JavaScript 的更多知识:

实例

  1. <script>
  2. // 获取根元素
  3. var r = document.querySelector(':root');
  4. // 创建获取变量值的函数
  5. function myFunction_get() {
  6. // Get the styles (properties and values) for the root
  7. var rs = getComputedStyle(r);
  8. // Alert the value of the --blue variable
  9. alert("The value of --blue is: " + rs.getPropertyValue('--blue'));
  10. }
  11. // 创建设置变量值的函数
  12. function myFunction_set() {
  13. // Set the value of variable --blue to another value (in this case "lightblue")
  14. r.style.setProperty('--blue', 'lightblue');
  15. }
  16. </script>

css3_var_js.htm

浏览器支持

表格中的数字注明了完全支持该属性的首个浏览器版本。

函数 Chrome Internet Explorer_Edge Firefox Safari Opera
var() 49.0 15.0 31.0 9.1 36.0

CSS var() 函数

函数 描述
var() 插入 CSS 变量的值。