$(
"table tr"
).live({
mouseenter:
function
()
{
//todo
},
mouseleave:
function
()
{
//todo
}
});
$(‘ul li‘).live(‘mouseenter‘,function(){ $(‘#tips‘).show();}).live(‘mouseleave‘,function(){ $(‘#tips‘).hide();});
时间: 2024-10-12 04:57:14