摘要: function stopPro(e) { if (e && e.stopPropagation) { //W3C取消冒泡事件 e.stopPropagation(); } else { //IE取消冒泡事件 window.event.cancelBubble = true; } }; 阅读全文
posted @ 2016-09-29 16:05 〃陌生丶人 阅读(1606) 评论(0) 推荐(0) 编辑