替换某个自然维度的所有图像

时间:2015-09-06 05:55:03

标签: jquery

我在一个页面上有8个缩略图从另一个站点拉出来。如果未找到图像,则网站会发回标准的80x80(自然尺寸)图像。我需要检测80x80图像并用我自己的图像替换它。

我猜这可以用jquery完成,但老实说,不知道如何实现它。

非常感谢任何帮助。

固定:我想出了一个解决方案,但不确定它是否是最好的解决方案。它有效,所以我现在就用它。

auto middle = first + (last - first) / 2;

谢谢

史蒂夫

1 个答案:

答案 0 :(得分:0)

<script type="text/javascript">
    jQuery(document).ready(function(){
        jQuery('img').each(function(index,value){
            var img = jQuery(this);
            if(img.height == 80 && img.width == 80){
                img.attr("src", "/2/files/no_image.jpg");
            }console.log("Not found")
        });
    });
</script>