遍历当前文档中的每个IMG

时间:2011-12-12 16:36:11

标签: javascript jquery google-chrome-extension image

我正在制作Chrome扩展程序并且想知道,使用JS / jQuery循环遍历当前文档中的每个IMG对象的最佳方法是什么?

2 个答案:

答案 0 :(得分:10)

Array.prototype.forEach.call( document.images, function( img ) {
    // ecmascript5 plz (but we accept a shim also)
});

答案 1 :(得分:5)

jQuery的:

$("img").each(function() {
    console.log($(this).prop("src"));
});

在控制台中记录每个图像的src