当我点击一个按钮时,我想根据if语句
更改div的背景颜色答案 0 :(得分:0)
试试这个,
<html>
<body>
<div id="divs" style="background-color: green">
<p>Your Div</p>
</div>
<input type="button" value="Click Me to change color" onclick="func()"></input>
</body>
<script>
function func(){
document.getElementById("divs").style.backgroundColor = "yellow";
}
</script>
</html>
&#13;
你可以用Google搜索。