基本上我的 img src 看起来像这样并且有类名 .pic:
img/folderA/..
img/folderB/..
img/folderC/..
..
img/folderZ/..
如果imc src等于/folderA/,我想为每个img示例添加类名,然后添加该img类名'thisisA'等,我尝试了类似的方法,但它不会有任何帮助吗?
$('.pic').each(function(i){
var imgSrc = this.src;
if(imgSrc.indexOf('/folderA/')){
$(this).addClass('thisisA');
}
else if(imgSrc.indexOf('/folderB/')){
$(this).addClass('thisisB');
}
});