所属分类:web前端开发
使用abort 事件来中止图片的加载。您可以尝试运行以下代码来学习如何在JavaScript中实现中止事件。
<!DOCTYPE html> <html> <body> <script> function abortFunc() { alert('Error- Loading of the image aborted'); } </script> <img src="/videotutorials/images/tutor_connect_home.jpg" onabort = "abortFunc()"> </body> </html>