たくさんの画像をロードするページがあります。
一部のリンクは存在しない画像へのリンクであり、ブラウザはこれらの画像を取得しようとすると 404 をスローします。
問題の例を次に示します。
<div>01<img id="01" src="http://i.imgur.com/ydiBX0Bb.jpg" /></div><hr />
<div>02<img id="02" src="http://i.imgur.com/aObMmrWb.jpg" /></div><hr />
<div>03<img id="03" src="http://www.google.com/does_not_exist.jpg" /></div><hr />
<div>04<img id="04" src="http://www.google.com/also_does_not_exist.jpg" /></div><hr />
<div>05<img id="05" src="http://i.imgur.com/kJezbugb.jpg" /></div><hr />
そしてフィドル:
画像 1、2、および 5 はすべて正常に読み込まれます。画像3と4は存在しません。
そのため、私の開発コンソールは次のエラーを吐き出します。
GET http://www.google.com/does_not_exist.jpg 404 (Not Found)
GET http://www.google.com/also_does_not_exist.jpg 404 (Not Found)
JavaScript / jQuery を使用して、404 エラーをスローした画像リンクのリストを取得できますか?
ありがとう!