标签: javascript jquery
如何检查元素是原始元素还是单击元素的传播?
如果我这样做,'propagation'始终会收到警告:
'propagation'
this.row.click(function(e){ if(e.target === this) alert('origin'); else alert('propagation'); //e.stopPropagation(); });
答案 0 :(得分:2)
检查event.target [docs]:
event.target
if(event.target === this) { // origin of the event }