onerror - 当图像加载时发生错误
- <!DOCTYPE html>
- <html>
- <head>
- <script>
- function imgError() {
- alert('无法加载图像。');
- }
- </script>
- </head>
- <body>
- <img src="image.gif" onerror="imgError()">
- <p>如果加载图像时发生错误,则会触发函数。该函数显示带有文本的警告框。在此例中,我们引用了不存在的图像,因此发生了 onerror 事件。</p>
- </body>
- </html>