标签:
3种方法1、在父元素事件的function中加if(event.target==this){ }2、子元素事件function最后加event.stopPropgation();// 阻止事件冒泡3、简单点,直接在子元素事件function最后加return false;// 阻止事件冒泡和默认操作
Javascript禁止子元素继承父元素的事件
原文地址:http://www.cnblogs.com/tomz/p/4326008.html