87,996
社区成员
发帖
与我相关
我的任务
分享


//图片人像框鼠标进入和移出事件
$(".people_head").each(function()
{
//$(this).css("border","hidden");
$(this).mouseenter(function()
{
$(this).css({"border":"solid","border-color":"#FFFFFF","border-width":"1px"});
//$(this).addClass("faces").css('border','solid');
});
$(this).mouseleave(function()
{
$(this).css("border","none");
});
});
//--