gistfile1.txt //法①:window.event?window.event.cancelBubble=true:oEvent.stopPropagation();//法②:if(window.event)//判断是否是IE浏览器 window.event.cancelBubble=true;//IE浏览器阻止冒泡语句else oEvent.stopPropagation(
//法①: window.event?window.event.cancelBubble=true:oEvent.stopPropagation(); //法②: if(window.event)//判断是否是IE浏览器 window.event.cancelBubble=true;//IE浏览器阻止冒泡语句 else oEvent.stopPropagation();//其他浏览器阻止冒泡语句