摘要:<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Document</title><style type="text/css">div{width:200px;height:200px;background-col
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
div{width:200px;height:200px;background-color: blue;}
</style>
<script type="text/javascript">
var box
window.onload=function(){
box = document.getElementById('cc');
}
function h(){
box.style.height="400px";
}
function w(){
box.style.width="400px";
}
function c(){
box.style.backgroundColor = 'red';
}
function z(){
box.style.width="100px";
box.style.height="100px";
box.style.backgroundColor = 'blue'
}
function y(){
box.style.display="none";
}
function d(){
box.style.display="block";
}
</script>
</head>
<body>
<div id="cc"></div>
<input type="button" name="" value="變高" onclick="h()">
<input type="button" name="" value="變寬" onclick="w()" >
<input type="button" name="" value="變色" onclick="c()">
<input type="button" name="" value="重置" onclick="z()">
<input type="button" name="" value="隱藏" onclick="y()">
<input type="button" name="" value="顯示" onclick="d()">
</body>
</html>
批改老師:滅絕師太批改時(shí)間:2019-01-18 13:13:01
老師總結(jié):完成的不錯(cuò),案例除了老師上課代碼,還可以自己拓展哦!