日期:2014-05-16 浏览次数:20380 次
$(document).on("mouseover",".cl", function(){
$(this).attr({"style":"background: #f8f8f8;"});//这个有效
$(this).children("span").attr({"style":"display:none;"});
});
$(document).on("mouseover",".cl", function(){
$(this).attr({"style":"background: #f8f8f8;"});//这个有效
var olimgurl = $(this).find("span").attr();
$(this).find(".huifu").css({ "style": "display:none;"});
});