$(document).ready( function () { |
$( 'li' ).livequery( function () { |
// 使用hover函数 绑定mouseover和mouseout事件 |
$( this ) |
.hover( function () { |
$( this ).addClass( 'hover' ); |
}, function () { |
$( this ).removeClass( 'hover' ); |
}); |
}, function () { |
// 解除绑定mouseover和mouseout事件 |
$( this ) |
.unbind( 'mouseover' ) |
.unbind( 'mouseout' ); |
}); |
}); |