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

交作業(yè)交作業(yè)交作業(yè)

原創(chuàng) 2019-04-21 21:57:27 194
摘要:<!DOCTYPE html><html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv=&

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta http-equiv="X-UA-Compatible" content="ie=edge">

<title></title>

<style>

#box{width: 100px;height:100px;background:blue;margin:20px 80px;}

</style>

</head>

<body>

<div id="box"></div>

<input type="button" value="變高" onclick="changeHeight()">

<input type="button" value="變寬" onclick="changeWidth()">

<input type="button" value="變色" onclick="changeColor()">

<input type="button" value="重置" onclick="resetBox()">

<input type="button" value="隱藏" onclick="hideBox()">

<input type="button" value="顯示" onclick="showBox()">

<script type="text/javascript">

var box;

window.onload=function(){

box=document.getElementById('box');

}

function changeHeight(){

box.style.height="400px";

}

function changeWidth(){

box.style.width="400px";

}

function changeColor(){

box.style.background="green";

}

function resetBox(){

box.style.height="100px";

box.style.width="100px";

box.style.background="blue";

}

function hideBox(){

box.style.display="none";

}

function showBox(){

box.style.display="block";

}

</script>

</body>

</html>


批改老師:西門(mén)大官人批改時(shí)間:2019-04-22 10:47:37
老師總結(jié):作業(yè)名稱不要瞎起。認(rèn)真些。代碼不要拷貝課件源碼,自己寫(xiě)

發(fā)布手記

熱門(mén)詞條