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.
html imgタグで画像の読み込みエラー(404が見つからない、またはその他の4xxまたは5xxエラー)であるかどうかを確認し、jqueryコールバックで報告する方法は?
$('img').error(function(){ //... });
ドキュメント
ドキュメントの例:
<img alt="Book" id="book" /> $('#book') .error(function() { alert('Handler for .error() called.') }) .attr("src", "missing.png");