码迷,mamicode.com
首页 > 其他好文 > 详细

阻止默认行为 阻止冒泡

时间:2017-09-16 23:26:35      阅读:400      评论:0      收藏:0      [点我收藏+]

标签:兼容性问题   highlight   can   dev   stop   document   def   ati   默认   

什么是默认行为?

var a = document.getElementById(‘a‘);
a.addEventListener(‘click‘,function(e){
    e.preventDefault();
},false);

兼容性问题:

function preventDefault(event){
    var event = $$.getEvent(event);
    if(event.preventDefault){
        event.preventDefault();
    }else{
        event.returnValue = false; //微软
    }
}

什么是阻止冒泡

$$(‘div2‘).addEventListener(‘click‘,function(event){
    event.stopPropagation();
},false)

兼容性问题

function stopPropagation(event){
    var event = $$.getEvent(event);
    if(event.stopPropagation){
        event.stopPropagation();
    }else{
        event.cancelBubble = true;
    }
}

  

阻止默认行为 阻止冒泡

标签:兼容性问题   highlight   can   dev   stop   document   def   ati   默认   

原文地址:http://www.cnblogs.com/Abner5/p/7533166.html

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