jqueryはどのようにして新しく生成された要素にhoverイベントをバインドしますか?

720 ワード

$( "table tr" ).live({     mouseenter:     function ()     {        //todo     },     mouseleave:     function ()     {        //todo     } });
 
$('ul li').live('mouseenter',function(){
$('#tips').show();
}).live('mouseleave',function(){
$('#tips').hide();
});