浏览器兼容:取消冒泡事件

       function cancelEvent(evt){
            if (window.event) {
                window.event.cancelBubble =true;
            }else{
                evt.stopPropagation();
            }
        }

event在firefox浏览器中是局部变量,所以必须要通过参数的方式传递到相应的方法中。



posted @ 2013-06-13 17:43  linyujade  阅读(138)  评论(0编辑  收藏  举报