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

javaScript小点..

时间:2017-12-21 17:14:05      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:事件   javascrip   doctype   tde   nodename   utf-8   asc   tor   class   

阻止事件冒泡

function stopBubble(e){
if(e&&e.stopPropagation){//非 IE
e.stopPropagation();
}
else{//IE
window.event.cancelBubble=true;
}
}

 

阻止默认事件

function stopDefault( e ) {
//阻止默认浏览器动作(W3C)
if ( e && e.preventDefault )
e.preventDefault();
//IE 中阻止函数器默认动作的方式
else
window.event.returnValue = false;
return false;
}

 

 

事件委托

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<style>
    #oul li{
        display: block;
        width: 600px;
        height: 50px;
        background-color: rgba(0,0,0,0.3);
        margin: 20px;
    }
</style>
<body>
    <ul id="oul">
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
    </ul>

    <script>
        var ul = document.querySelector("#oul");

        ul.onclick = function (ev){

            var ev = ev || window.event;

            var target = ev.target || ev.srcElement;

            if(target.nodeName.toLowerCase() == "li"){

                alert("123")
            }

            //alert("123")


        }

    </script>
</body>
</html>

 

javaScript小点..

标签:事件   javascrip   doctype   tde   nodename   utf-8   asc   tor   class   

原文地址:http://www.cnblogs.com/ps5020/p/8080979.html

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