$(".images_list li").live({
mouseenter:
function()
{
$(this).parent().children("a").hide();
$(this).children('a').show();
$(this).css({'border':"1px solid red"});
},
mouseleave:
function()
{
$(this).children('a').hide();
$(this).css({'border':"none"});
}
});
jquery使用live绑定hover(out,over).
最新推荐文章于 2022-06-29 02:12:01 发布