是否可以使用 JavaScript 更改 HTML 按钮的 CSS 类?
我试过了,但没有用:
document.getElementById("btnChoice1").setAttribute("class", "redButton");
HTML 按钮
<button class="basicButton" id="btnChoice1">
CSS
.basicButton {
width:300px;
}
.redButton {
width:300px;
background-color:red;
}