1 //阻止浏览器冒泡 2 function stopBubble(e) { 3 if ( e && e.stopPropagation ){ 4 //W3C标准 5 e.stopPropagation(); 6 } 7 else{ 8 //IE 6 7 8 Only 9 window.event.cancelBubble = true; 10 } 11 }