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

div的js操作style

Original 2019-01-18 12:17:32 344
abstrakt:<!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>


Korrigierender Lehrer:滅絕師太Korrekturzeit:2019-01-18 13:13:01
Zusammenfassung des Lehrers:完成的不錯,案例除了老師上課代碼,還可以自己拓展哦!

Versionshinweise

Beliebte Eintr?ge