阻止冒泡函数
function stopBubble(e) { if(e & e.stopPropagation()) { e.stopPropagation() }else { // IE window.event.cancelBubble = true }}