How to interact with DOM on a UWP WebView?
问题 I have a UWP XAML Page and a WebView <WebView Name="webview1" Margin="10" Source="http://www.apelosurgentes.com.br/en-us/" LoadCompleted="WebView_LoadCompleted" /> How to read and manipulate the DOM of the document that was loaded on this WebView? 回答1: How to interact with DOM on a UWP WebView? You can use InvokeScriptAsync with the JavaScript eval function to use the HTML event handlers, and to use window.external.notify from the HTML event handler to notify the application using WebView