好的,所以我有这个函数可以为每个带有可见类的 img 获取 img src:
$('.visible').each(function() {
var img = ($(this).attr('src'));
alert(img);
});
现在我需要比较前两个 img src 看看它们是否相同我试过这个:
$('.visible').each(function() {
var firstImg = ($(this).eq(0).attr('src'));
var secondImg = ($(this).eq(1).attr('src'));
if(firstImg == secondImg){
alert('match');
}else{
alert('not a match');
}
});
这显然是错误的,所以我该怎么做呢?