close

<!DOCTYPE html>
<html lang="zh-Hant-TW">
<head>
    <title>Learing Javascript</title>

    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1" />

    <style type="text/css">
        
        #circle{

            width: 200px;
            height: 200px;
            background-color: blue;
            border-radius: 50%;
        }
    </style>

</head>

<body>

    <div id="circle"></div>

    <script type="text/javascript">
        document.getElementById("circle").onclick = function(){
            document.getElementById("circle").style.display = "none";

        }
    
    </script>


</body>
</html>


 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 A&B 的頭像
    A&B

    網頁前端新手上路辛酸史

    A&B 發表在 痞客邦 留言(0) 人氣()