87,990
社区成员
发帖
与我相关
我的任务
分享
$(".tpk_list ul li").each(function(){
$(this).click(function(){
if($(this).find(".photo_right").css("display")=="block")
{
$(this).css({"border":"1px solid blue"});
}
else
{
$(this).css({"border":"1px solid red"});
}
});
$(this).mouseover(function(){
$(this).css({"border":"1px solid red"});
});
$(this).mouseout(function(){
$(this).css({"border":"1px solid blue"});
});
});