jquery는 어떻게 새로 생성된 요소에 호버 이벤트를 연결합니까?

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

좋은 웹페이지 즐겨찾기