摘要: function stopPro(e) { if (e && e.stopPropagation) { //W3C取消冒泡事件 e.stopPropagation(); } else { //IE取消冒泡事件 window.event.cancelBubble = true; } }; 阅读全文
posted @ 2013-02-19 20:50 leejersey 阅读(543) 评论(0) 推荐(0) 编辑