有没有人知道如何通过单击按钮更改div背景颜色?

时间:2017-06-03 01:30:42

标签: html button colors background

当我点击一个按钮时,我想根据if语句

更改div的背景颜色

1 个答案:

答案 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;
&#13;
&#13;

你可以用Google搜索。