码迷,mamicode.com
首页 > 编程语言 > 详细

JAVAscript学习笔记 js句柄监听事件 第四节 (原创) 参考js使用表

时间:2017-09-14 23:47:09      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:listen   oct   list   pre   onclick   ror   使用   style   笔记   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>句柄添加监听事件</title>
    <script type="text/javascript" src="tzy.js"></script>
</head>
<body>
<button id="mybtn" onclick="demo()">按钮</button>
<script>
    /*
    //注意这种引用样式必须放在button后面不然出现
    //Uncaught TypeError: Cannot read property ‘addEventListener‘ of null
    //错误:页面未加载完成
    var x = document.getElementById("mybtn");
    x.addEventListener("click", hello);
    x.addEventListener("click", world);//添加
    x.removeEventListener("click", world);//移除
    function hello() {
        alert("hello");
    }

    function world() {
        alert("world");
    }*/
</script>
</body>
</html>
//注意这种引用样式必须放在button后面不然出现
//Uncaught TypeError: Cannot read property ‘addEventListener‘ of null
//错误:页面未加载完成
function demo(){
    var x = document.getElementById("mybtn");

    x.addEventListener("click", hello);
    x.addEventListener("click", world);//添加
    x.removeEventListener("click", world);//移除
}
function hello() {
    alert("hello");
}

function world() {
    alert("world");
}

 

JAVAscript学习笔记 js句柄监听事件 第四节 (原创) 参考js使用表

标签:listen   oct   list   pre   onclick   ror   使用   style   笔记   

原文地址:http://www.cnblogs.com/ttzzyy/p/7523209.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!