Web速查-索引
定义
onabort 事件会在图像加载被中断时发生。
和<img>
组合使用,当用户在图像完成载入之前放弃图像的装载(如单击了
stop 按钮)时,就会调用该句柄。
语法
onabort="script"
参数 |
描述 |
script |
必需。规定该事件发生时执行的 JavaScript。 |
实例
<img src="fishc.gif"
onabort="alert('Error: Loading of the image was aborted')" />
如果图像的加载被中断,则会显示一个对话框:Loading of the image was aborted