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

用JS改變DVI的寬高,顏色,顯示和隱藏

Original 2019-04-15 15:59:20 257
abstrakt:<!DOCTYPE html><html><head> <title>改變div</title> <style type="text/css"> #box{width:100px; height: 100px; background:red; margin:20px 80px;} </style>

<!DOCTYPE html>

<html>

<head>

<title>改變div</title>

<style type="text/css">

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


</style>

</head>

<body>


<div id="box">

</div>

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

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

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

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

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

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




<script type="text/javascript">

var box = document.getElementById('box');

window.onload= function(){


}


function changeHeight(){

box.style.height="400px"

}


function changeK(){

box.style.width="400px"

}


function changeColor(){

box.style.background="pink";

}


function reset(){

box.style.width="100px";

box.style.height="100px;"

box.style.background="red"

}


function hide(){

box.style.display="none"

}


function show(){

box.style.display="block"

}



</script>


</body>

</html>


Korrigierender Lehrer:查無此人Korrekturzeit:2019-04-16 09:53:36
Zusammenfassung des Lehrers:完成的不錯。js語句,每行結(jié)束后增加;號。繼續(xù)加油。

Versionshinweise

Beliebte Eintr?ge