我有网格视图显示3个图像第一个1被删除我想循环通过网格视图图像并将它的src放入数组但忽略删除的图像 此图像显示我真正遇到的内容
答案 0 :(得分:2)
var arr = [];
$('#container').find('img,[type=image]').each(function() {
arr.push(this.src); // stores the absolute src
// arr.push($(this).attr('src')); // stores the original HTML attribute
});