<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
#box{
height: 100px;
width: 100px;
background-color: deeppink;
}
</style>
</head>
<body>
<div id="box">
</div>
<input type="button" value="改变高度"onclick="aa()" />
<input type="button" value="改变宽度"onclick="bb()" />
<input type="button" value="改变颜色" onclick="cc()" />
<script type="text/javascript">
var box
window.onload=function(){
box = document.getElementById("box")
}
function aa(){
box.style.height = "400px"
}
function bb(){
box.style.width= "400px"
}
function cc(){
box.style.backgroundColor = "blue"
}
</script>
</body>
</html>