$(
"table tr"
).live({
mouseenter:
function
()
{
//todo
},
mouseleave:
function
()
{
//todo
}
});
$(‘ul li‘).live(‘mouseenter‘,function(){ $(‘#tips‘).show();}).live(‘mouseleave‘,function(){ $(‘#tips‘).hide();});
时间: 2024-12-17 00:01:18