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

課后練習(xí)-JavaScript控制DIV樣式

オリジナル 2019-02-21 16:18:00 198
サマリー:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>課后練習(xí)-JavaScript控制DIV樣式</title> <style type="text/css"> #box{wid
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>課后練習(xí)-JavaScript控制DIV樣式</title>
<style type="text/css">
#box{width: 100px;height: 100px;background: red;margin:20px 80px;}
</style>
</head>
<body>
<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 changeBackgroundColor() {
box.style.background="#4f0";
}
function reset() {
box.style.height="100px";
box.style.width="100px";
box.style.background="red";
}
function hide() {
box.style.display="none";
}
    function show() {
box.style.display="block";
}
</script>
<div id="box"></div>
<input type="button" value="變高" onclick="changeHeight();">
<input type="button" value="變寬" onclick="changeWidth();">
<input type="button" value="變色" onclick="changeBackgroundColor();">
<input type="button" value="重置" onclick="reset();">
<input type="button" value="隱藏" onclick="hide();">
<input type="button" value="顯示" onclick="show();">
</body>
</html>


添削の先生:韋小寶添削時(shí)間:2019-02-21 17:26:44
先生のまとめ:寫(xiě)的很不錯(cuò) js來(lái)控制div的樣式還是很靈活的

手記を発表する

人気のある見(jiàn)出し語(yǔ)