我想比较两个图像路径是否相等,但我不能使它工作。这是我的代码
$("#productImg img").click(function(){
var img = $(this).attr("src");
var smallImage = $("#largeImg img").attr("src").replace('si_', 'th');
if(img == smallImage){
alert('match');
}else{
alert('not a match');
}
});
Bellow是图片标签
<img id="zoomImage" src="products/beddingSupplies/beddingSuppliesDuvet/img/si_1.jpg" />
<img id="zoomImage" src="products/beddingSupplies/beddingSuppliesDuvet/img/th_1.jpg" />
感谢您的时间
答案 0 :(得分:1)
var smallImage = $("#largeImg img").attr("src").replace('si_', 'th_');