mouseover
次のようなイベント ハンドラを作成しました。
$('.grpName_tooltip0, .grpName_tooltip1, .grpName_tooltip2').live('mouseover',function(){
var localGrpName=$(this).attr('class')=='grpName_tooltip0'?arrGrpNames[0]:$(this).attr('class')=='grpName_tooltip1'?arrGrpNames[1]:$(this).attr('class')=='grpName_tooltip2'?arrGrpNames[2]:'';
$('#GroupsDivTooltip').html(localGrpName);
$('.ttpGrp').css({'top':$(this).offset().top+27,'left':$(this).offset().left}).fadeIn();
}).live('mouseleave',function(){
$('#GroupsDivTooltip').html('');
$('.ttpGrp').fadeOut();
});
.grpName_tooltip0
特定のクラス名に対して .die を実行したい。
以下のように個別に試してみるとうまくいきません...
$('.grpName_tooltip0').die('mouseover');
それは言及されたすべてのために働いています...以下のように
$('.grpName_tooltip0, .grpName_tooltip1, .grpName_tooltip2').die('mouseover');
1人だけにしたい。
私に提案してください.....