Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
グリッドビュー表示に3つの画像があります最初の1つが削除されましたグリッドビュー画像をループしてそのsrcを配列に入れたいのですが、この画像を削除した画像を無視して実際に遭遇したものを表示します
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 });