📌  相关文章
📜  如何使用javascript让颜色框改变颜色然后变回来 - Javascript代码示例

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

代码示例1
var btn = document.getElementById("#btn");
var box = document.getElementById("#box");

function changeColor() {
  box.style.backgroundColor = "red";
}

function ifColor() {
  if (box.style.backgroundColor == "red") {
    box.style.backgroundColor = "blue";
  }
}