から要素を除外する私が使用してクリックイベントハンドラから画像を除外しようとしています:は、イベントハンドラ
$('#templtable .trhover *:not(#infoimg)').live('click', function(event) {
event.stopPropagation();
$(this).toggleClass('selected');
$('#infoimg').click(function(event) {
console.log("infoimg");
event.stopPropagation();
});
を、表には次のようになります。クリックイベントがまだアクティブであるしかし
<table><tr class='trhover'><td><img id='infoimg' src='/images/icon-info.gif' alt='Details'><input type='checkbox' class='followup' id='1' value='234234'></td><td>234234</td></tr><table>
画像では、これを解決する方法を提案しますか?
おかげ
? – ggreiner
イメージアイテム以外のtr(class = trhover)のすべてのアイテムについて。 –