关于js 阻止冒泡事件和默认事件

来源:07素材网 03月13日 21:15
阻止事件冒泡   window.enent ? window.enent.cancelBubble = true : e.stopPropagation()

function stopBubble(event){
    if(window.event){//兼容IE
        window.event.cancelBubble=true;
    }else{
        event.stopPropagation();
    }
}
 


阻止默认事件  window.event? window.event.returnValue=false : event.preventDefault(): return false

function stopDefaultEvent(event){
    if(window.event){//兼容IE
    window.event.returnValue=false;
    }else{
    event.preventDefault()
    }
    return false;
}
原文出处:https://www.cnblogs.com/yxdlm/p/10522199.html
版权声明:本文来源地址若非本站均为转载,若侵害到您的权利,请及时联系我们,我们会在第一时间进行处理。

头条

在使用SQLite3时遇到的几个坑

在使用SQLite3时遇到的几个坑

《本打算在SQLite3数据库里执行一个查询语句,使用的是php语言,起初遇到的是权限问题: permission denied,因为SQLite3数据库文件和PHP执行者属于两个不同的用户,首先需要对这个文件执行mode 777的权限开放,然后,又遇到了下面这样的PHP错误