Js 通过点击改变css样式

通过js 点击按钮去改变目标原始的背景颜色

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>Change.html</title>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
  <script language="javascript">
     function test4(event) {
	   if(event.value == "11") {
	      //?取div1
	      var div1 = document.getElementById('div1');
	      div1.style.backgroundColor="black";
	   }
	   if(event.value == "22") {
	      //?取div1
	      var div1 = document.getElementById('div1');
	      div1.style.backgroundColor="red";
	   }
	 }
  </script>
</head>
<body>
  <div id="div1" style="400px; height:300px; background-color:red;">div1</div>
  <input type="button" value="11" onclick="test4(this)"/>
  <input type="button" value="22" onclick="test4(this)"/>

  </body>
</html>
原文地址:https://www.cnblogs.com/sunxun/p/4324174.html