阻止js事件冒泡

	 e = e || window.event;
	 //阻止冒泡
	 if (isIE){
		 e.cancelBubble = true;
	 }else{
		 e.stopPropagation();
	 }
原文地址:https://www.cnblogs.com/xiziyin/p/1776416.html