要实现将选定的按钮设置为红色或绿色,可以通过以下步骤更改JavaScript代码:
var button = document.getElementById("button");
button.addEventListener("click", changeColor);
function changeColor() {
var button = document.getElementById("button");
if (button.classList.contains("red")) {
button.classList.remove("red");
button.classList.add("green");
} else {
button.classList.remove("green");
button.classList.add("red");
}
}
.red {
background-color: red;
}
.green {
background-color: green;
}
完成以上步骤后,点击按钮时,它的颜色会在红色和绿色之间切换。
腾讯云相关产品推荐:
领取专属 10元无门槛券
手把手带您无忧上云