导航

onclick监听

Posted on 2017-03-29 09:29  _eve  阅读(179)  评论(0编辑  收藏  举报
<!doctype html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>Document</title>

</head>

<body>

    <script>

    window.onload=function(){

    var o_btn=document.getElementById("YGW");

    o_btn.addEventListener("click",function(){

    alert("了定当我I主吧在2016年12月12日19:47:08回答此问题")

    },false)

    }  

    </script>

<body>  

<button id="YGW">按一下</button>

 </body>

</body>

</html>