所以我试图实现这种悬停效果很好但是当悬停效果结束时,我想为某个div设置一个新的背景。到目前为止,我只需要以某种方式传递当用户将图像悬停到ELSE函数时获得的变量值。
以下是我尝试的内容:
$('.yith_magnifier_thumbnail').hover(function() {
ssrc = $(this).attr( "href" );
$('img.attachment-shop_single').attr("src", ssrc);
}, function(ssrc){
// HERE I NEED TO USE THE VARIABLE ssrc in order to set the background but all i get is an [object object] type
//var ssrc = $(this).attr( "href" );
console.log('url("' + $ssrc + '") !important');
$('.yith_magnifier_zoom_magnifier').css("background-image", 'url("' + ssrc + '") !important');
});