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

改變div屬性

Original 2019-03-24 17:14:05 319
abstrakt:<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Document</title><style type="text/css">#box{width:100px;height:100px;background:re

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Document</title>

<style type="text/css">

#box{

width:100px;

height:100px;

background:red;

}

</style>

</head>

<body>

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

<button onclick="aa()">變高</button>

<button onclick="bb()">變寬</button>

<button onclick="cc()">變色</button>

<button onclick="dd()">重置</button>

<button onclick="ee()">隱藏</button>

<button onclick="ff()">顯示</button>

<script type="text/javascript">

var box;

window.onload=function(){

box=document.getElementById('box');

}


function aa(){

box.style.height="400px";

}

function bb(){

box.style.width="400px";

}

function cc(){

box.style.background="pink";

}

function dd(){

box.style.width="100px";

box.style.height="100px";

box.style.backgorund="red";

}

function ee(){

box.style.display="none";

}

function ff(){

box.style.display="block";

}

</script>

</body>

</html>


Korrigierender Lehrer:查無此人Korrekturzeit:2019-03-25 09:22:51
Zusammenfassung des Lehrers:完成的不錯(cuò)。下次把代碼縮進(jìn)下。繼續(xù)加油。

Versionshinweise

Beliebte Eintr?ge