开发者

jquery mouseover / mouseout problem

开发者 https://www.devze.com 2022-12-10 10:52 出处:网络
I have a page with a list of elements display (items) - which are drawn dynamically, hence the live. When a user rolls over an item, I would like them to switch to a class that is \"on\" and then when

I have a page with a list of elements display (items) - which are drawn dynamically, hence the live. When a user rolls over an item, I would like them to switch to a class that is "on" and then when they roll-off (mouseout) the item goes back to normal. Th开发者_JS百科e items turn on with the line of code below, but do not turn off. Suggestions?

$('.item').live('mouseover', function(){$(this).switchClass('item','item_on', 500);});
$('.item_on').live('mouseout', function(){$(this).switchClass('item_on','item', 500);});

Thanks!


$('.item').live('mouseover',
function(){$(this).addClass('item_on');});
$('.item').live('mouseout',
function(){$(this).removeClass('item_on');});

Also, I think that for switchClass to work, you need to include jQuery UI after jquery, but before your script, what could be happening is the mouse is going out of the .item element, before the .item_on element is created by the delay.

Also, I think what you are looking for, instead of a delayed switchclass that might not trigger the live event handler, try using http://cherne.net/brian/resources/jquery.hoverIntent.html instead, with the above addClass / removeClass.

0

精彩评论

暂无评论...
验证码 换一张
取 消