Javascript更改css代码

时间:2018-03-02 15:14:55

标签: javascript html css

我有一个Javascript代码,可以使用颜色选择器

更改侧边栏颜色
var colorWell;
var defaultColor = "#0078c0";

window.addEventListener("load", startup, false);
function startup() {
  colorWell = document.querySelector("#colorWell");
  colorWell.value = defaultColor;
  colorWell.addEventListener("input", updateFirst, false);
  colorWell.addEventListener("change", updateAll, false);
  colorWell.select();
}
function updateFirst(event) {
  var side = document.querySelector(".sidebar");

  if (side) {
    side.style.backgroundColor = event.target.value;
  }
}function updateAll(event) {
  document.querySelectorAll(".sidebar").forEach(function(side) {
    side.style.backgroundColor = event.target.value;
  });
}

有没有办法让这段代码也改变css文件中的css值?

1 个答案:

答案 0 :(得分:0)

是的,你可以尝试: