日期:2014-05-16 浏览次数:20413 次
jQuery(document).ready(function($){
$(".content_left dl dd").hover(function() {
var _this = $(this);
_this.css("border","2px solid #d40070");
$('.imgTitleBg1' , _this).css("background-color","#d40070");
},function(){
var _this = $(this);
_this.css("background-color","#2a2a2a");
$('.imgTitleBg1' , _this).css("border","2px solid #2a2a2a");
});
});