WebUIView.DOMContentLoaded Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Evento attivato al termine dell'analisi del contenuto HTML corrente.
// Register
event_token DOMContentLoaded(TypedEventHandler<IWebViewControl, WebViewControlDOMContentLoadedEventArgs const&> const& handler) const;
// Revoke with event_token
void DOMContentLoaded(event_token const* cookie) const;
// Revoke with event_revoker
WebUIView::DOMContentLoaded_revoker DOMContentLoaded(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlDOMContentLoadedEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlDOMContentLoadedEventArgs> DOMContentLoaded;
function onDOMContentLoaded(eventArgs) { /* Your code */ }
webUIView.addEventListener("domcontentloaded", onDOMContentLoaded);
webUIView.removeEventListener("domcontentloaded", onDOMContentLoaded);
- or -
webUIView.ondomcontentloaded = onDOMContentLoaded;
Public Custom Event DOMContentLoaded As TypedEventHandler(Of IWebViewControl, WebViewControlDOMContentLoadedEventArgs) Implements DOMContentLoaded