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.
jQueryを使用して画像が存在するかどうかを確認する方法はありますか?
次のようにするとうまくいくと思いましたが、うまくいかず、console.log にイメージが存在しない場合はエラー 404 が表示されます。
$("#icon").html("<img src='/assets/img/"+condition+".png'>"); if (!$("#icon")){ $("#icon").html("nothing to show"); }
これを試して :
$("#icon").html("<img src='/assets/img/"+condition+".png'>"); $("#icon img").error(function() { $("#icon").html("nothing to show"); });
</p>