运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <p>Use the addEventListener() method to attach a "error" event to an img element.</p> <img id="myImg" src="image.gif"> <p id="demo"></p> <script> document.getElementById("myImg").addEventListener("error", myFunction); function myFunction() { document.getElementById("demo").innerHTML = "The image could not be loaded."; } </script> </body> </html>