JavaScript 中 abort 事件有什么用途?
使用 abort 事件来中止图像加载。你可以尝试运行以下代码,了解如何在 JavaScript 中实现 abort 事件。
示例
<!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>
广告