如果 img 在 background 属性中而不是 src 中,如何执行以下操作?
this.src = this.src.replace("_1","_2");
CSS:
#someimg {
background:url('someimg_1.jpg');
}
就像是:
$('#someimg').css.('background-image',
$(this).css('background-image').replace("_1","_2"));