理解:利用按钮的鼠标点击触发事件,每次点击的时候触发js里面的函数,利用js函数修改div里面的style属性值
总结: 此方法可以很方便的对网页样式进行修改。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>利用按钮控制DIV的样式</title>
<style>
#box{
width: 100px;
height: 100px;
background: red;
margin: 20px 80px;
}
</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()">
<input type="button" value="隐藏" onclick="dd()">
<input type="button" value="显示" onclick="ee()">
<script type="text/javascript">
var box = document.getElementById('box')
function aa() {
box.style.height='400px'
}
function bb() {
box.style.width='400px'
}
function cc() {
box.style.background='blue'
}
function dd() {
box.style.display='none'
}
function ee() {
box.style.display='block'
}
</script>
</body>
</html>