好吧基本上我的代码位于底部,如果我提供完整的图像网址,它可以正常工作,但是我试图让它工作,如果我只给它一部分并使用*用于其他部分。
var theList = ['*this.png','site.com/folder/*'];
for(i=0; i<theImages.length; i++) {
for(j=0; j<theList.length; j++) {
if(theImages[i].src==theList[j]) alert(theList[j]+' found on this page');
}
}
请,谢谢
答案 0 :(得分:2)
我...并不认为我的评论会有所帮助,但由于它似乎确实如此,我想我会将其作为答案发布:
它没有用,因为你使用了==而不是考虑通配符*的东西。