子元素不触发父元素点击事件的方法

加入

event.stopPropagation();

用法在这里:http://www.runoob.com/jquery/event-stoppropagation.html

阻止 click 事件冒泡到父元素,如:

function del(id) {
		event.stopPropagation();//阻止触发父元素的点击事件
		var flag = window.confirm("您确定要删除该信息吗?");
		if (flag) {
			window.location.href="<%=context%>/weChatEventReport/weChatDeleteEventReport.action?id="+id;
	}
	        	    
	}


你可能感兴趣的:(前端)