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

通過按鈕控制DIV樣式

Original 2019-05-03 21:44:02 254
abstract:<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>改變DIV樣式</title
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>改變DIV樣式</title>
    <script>
    // 聲明全局變量,讓后面函數(shù)共同調(diào)用
        var box1
        window.onload=function(){
            box1 =document.getElementById('box');
        };
        // 去調(diào)用全局變量
        function one() {
            box1.style.height='300px';
        };
        function two() {
           box1.style.width='300px';
        };
        function there() {
            box1.style.background='lightpink';
        };
        function four() {
            box1.style.width='150px';
            box1.style.height='150px';
            box1.style.background='lightskyblue';
        };
        function five() {
            box1.style.display='none';
        };
        function six() {
            box1.style.display='block';
        }
    </script>
    <style>
        #box{width: 150px;height: 150px;background: lightskyblue;margin:10px 60px}
    </style>
</head>
<body>
    <div id="box"></div>
    <button onclick="one()">變高</button>
    <button onclick="two()">變寬</button>
    <button onclick="there()">變色</button>
    <button onclick="four()">重置</button>
    <button onclick="five()">隱藏</button>
    <button onclick="six()">顯示</button>
</body>
</html>


Correcting teacher:查無此人Correction time:2019-05-05 09:09:08
Teacher's summary:完成的不錯。js比較難,因為它的功能非常強(qiáng)大。繼續(xù)加油。

Release Notes

Popular Entries