亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

javascript控制div樣式

Original 2019-05-13 11:36:01 199
abstract:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" type="text/css"&
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title></title>
	<link rel="stylesheet" type="text/css" href="">
	<style type="text/css">
		div{
			width: 100px;
			height: 100px;
			border: 1px solid #000;
			margin: 30px;
		}

	</style>
</head>
<body>
	<div id="box"></div>
	<input type="button" value="變高" name="" onclick="he()">
	<input type="button" value="變寬" name="" onclick="wd()">
	<input type="button" value="變色" name="" onclick="bg()">
	<input type="button" value="重置" name="" onclick="cz()">
	<input type="button" value="隱藏" name="" onclick="dn()">
	<input type="button" value="顯示" name="" onclick="db()">
<script type="text/javascript">
	var box;
	window.onload=function(){
		box=document.getElementById('box');
	}
	function he(){
		box.style.height='200px';
	}
	function wd(){
		box.style.width='200px';
	}
	function bg(){
		box.style.background='green';
	}
	function cz(){
		box.style.height='100px';
		box.style.width='100px';
		box.style.background='#fff';
	}
	function dn(){
		box.style.display='none';
	}
	function db(){
		box.style.display='block';
	}
</script>
</body>
</html>


Correcting teacher:查無此人Correction time:2019-05-14 09:21:59
Teacher's summary:完成的不錯(cuò)。js點(diǎn)擊事件很強(qiáng)大,多研究研究。繼續(xù)加油。

Release Notes

Popular Entries