--- title: GlobalEventHandlers.onabort slug: Web/API/GlobalEventHandlers/onabort translation_of: Web/API/GlobalEventHandlers/onabort ---
Обработчик событий, позволяющий прерывать события объекта window. (Недоступен для Firefox 2 и Safari).
TODO define what "abort" is. Closing the window via window manager? Stopping the load of the page? By which means and reasons (user, network/server)? At which stages would it fire / be catched? Для IE, событие onabort доступно только для тега img
.
window.onabort = funcRef
funcRef
: Reference to a functionwindow.onabort = function() { alert("Load aborted."); }
Specification | Status | Comment |
---|---|---|
{{SpecName('HTML WHATWG','webappapis.html#handler-onabort','onabort')}} | {{Spec2('HTML WHATWG')}} |
{{Compat("api.GlobalEventHandlers.onabort")}}