我想在页面上找到每个图像并将其替换为另一个图像
我正在尝试使用以下jQuery。
$('img').each(function() {
$(this).attr("src", "http://myurl.com/mypic.jpg");
}
然而,它没有更新页面上的任何图像?有没有我错过的东西?
答案 0 :(得分:2)
在您的代码中,您尚未完成关闭test_file
的功能。尝试:
)
或简化:
$("img").each(function () {
$(this).attr("src", "http://myurl.com/mypic.jpg");
});
答案 1 :(得分:1)
each
。
.attr( attributeName, value )
为匹配元素集设置一个或多个属性。
因此无需使用each
。