国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

第一個div案例

Original 2019-01-09 13:52:53 193
abstract:<!DOCTYPE html><html><head>    <meta charset="utf-8"> <title>changeDIV</title> <style type="text/css">       

<!DOCTYPE html>

<html>

<head>

    <meta charset="utf-8">

<title>changeDIV</title>

<style type="text/css">

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

</style>

</head>

<body>

<script type="text/javascript">

    var box

    window.onload=function () {

    box=document.getElementById('box')

    }

    function aa() {

    box.style.height="300px"

    }

    function bb() {

    box.style.width="300px"

    }

    function cc() {

    box.style.background="pink"

    }

    function dd() {

        box.style.height="100px"

        box.style.width="100px"

        box.style.background="red"

     }

    function ee() {

    box.style.display="none"

    }

    function ff() {

    box.style.display="block"

    }



</script>

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

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

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

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

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

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

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

</body>

</html>


Correcting teacher:天蓬老師Correction time:2019-01-09 14:37:11
Teacher's summary:onclick="dd()", 知道嗎? 這就是經(jīng)典 DOM0級事件

Release Notes

Popular Entries