我在使用 jQuery/CSS/data 属性设置背景时遇到问题。我没有正确重构代码,可能会找到更好的解决方案,但想知道为什么这不起作用......解释起来有点困难......见下文
$('.promoCarousel').find('.image').each(function(){
$(this).css({
'background-image': $(this).attr('data-mob-src'), // DOESNT SET BACKGROUND IMAGE
'width' : 288,
'height' : 288
})
$(this).addClass("mobview");
});
是因为我将 $(this) 与 $(this) 一起使用吗?