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

按鈕點(diǎn)擊后調(diào)用自定義函數(shù)改變css屬性

original 2018-12-12 16:14:45 285
abstrait:<!DOCTYPE html><html><head> <meta charset="utf-8"> <title></title> <style type="text/css"> #box{width: 100px;height: 100px;background

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title></title>

 <style type="text/css">

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

</style>

</head>

<body>

<script type="text/javascript">

var box 

window.onload = function(){

box = document.getElementById('box')

}

function gao(){

box.style.height = "200px"

}

function kuan(){

box.style.width = "200px"

}

function se(){

box.style.background = "pink"

}

function co(){

box.style.height = "100px"

box.style.width = "100px"

box.style.background = "red"

}

function yin(){

box.style.display = "none"

}

function xan(){

box.style.display = "block"

}

</script>

<div id="box">


</div>

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

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

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

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

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

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

</body>

</html>

~K~QVJOLQ@[8}OYAM}RO~PY.png

Professeur correcteur:天蓬老師Temps de correction:2018-12-12 16:20:16
Résumé du professeur:作業(yè)合格,在實(shí)際項(xiàng)目開發(fā)中,最好少用或者不用全局變量。

Notes de version

Entrées populaires