冒泡我有一個簡單的HTML表格看起來像這樣處理事件的jQuery中
<table id='resultGrid'>
<tr>
<td>
<a href='javascript:callAction(xxx)'>Johnny</a>
</td>
<td>
Active
</td>
</tr>
<tr>
<td>
<a href='javascript:callAction(yyy)'>Nitro</a>
</td>
<td>
In Active
</td>
</tr>
</table>
,我想同時處理排CLIK和hypherlink點擊。由於希弗鏈接已經連接到callAction()函數,我用jQuery來click事件添加到該行
$("#resultGrid tr").each(function(){
$(this).css('cursor','hand');
$(this).click(function() {
//My logic
});
});
現在的問題是,每次我單擊超鏈接,該行單擊事件也觸發。我如何防止這一點。
因爲超鏈接是tablerow的內部,tablerows回調將首先觸發,因爲它是錨的父元素。 – diceler 2011-01-28 09:03:42
@Ziga,我明白,...什麼是避免這種方式.... – RameshVel 2011-01-28 09:09:47