リソースが見つからなかったためにロードされなかったすべての要素を見つける方法は?
<body>
<img src="notThere.png">
<script src="notInHere.png"></script>
<img src="DoesExist.png">
// want to find the first and the script with unexisting sources, but not the second image with an existing source.
</body>
誰かがそれらの要素を見つける方法のヒントを教えてもらえますか? onerror
要素が動的にロードされる可能性があるため、各要素の設定は解決策ではないと思います..
残念ながら、window.onerror
「リソースが見つかりません」エラーでは起動されません。
例:
<body>
<script src="someonesScript.js"></script> <!-- this script might load images/audio etc.. -->
<script>
// now put here whatever you like
// but find out which resources (images,scripts,..) were tried to load (from the script above)
// and can't be loaded
</script>
</body>
この例が私の質問を理解するのに役立つことを願っています。