码迷,mamicode.com
首页 > Web开发 > 详细

Js 冒泡事件阻止

时间:2014-11-06 12:20:14      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:io   ar   for   sp   on   bs   window   nbsp   js   

 var event = arguments.callee.caller.arguments[0] || event;  //获取事件对象本身


        if (event.stopPropagation) { //是火狐浏览器时
            // this code is for Mozilla and Opera
            event.stopPropagation();
        }
        else if (window.event) { //是IE浏览器时
            // this code is for IE
            window.event.cancelBubble = true;
  }

Js 冒泡事件阻止

标签:io   ar   for   sp   on   bs   window   nbsp   js   

原文地址:http://www.cnblogs.com/BluceLee/p/4078165.html

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