代码之家  ›  专栏  ›  技术社区  ›  Tony

如何访问和操作WebView的DOM和JavaScript?

  •  0
  • Tony  · 技术社区  · 6 年前

    我有一个WebView,我可以导航到一个URL,我想阅读内容,与JavaScript交互,等等。

    我试过了

    XAML编号:

    <WebView Name="wv1" LoadCompleted="wv1_LoadCompleted" />
    

    C代码:

    private void wv1_LoadCompleted(object sender, NavigationEventArgs e)
    {
        var uri = e.Uri;
    
        var c = e.Content;
    }
    

    e.Uri 返回,但 e.Content 为空。

    1 回复  |  直到 6 年前
        1
  •  1
  •   Nico Zhu    6 年前

    问题是返回了e.Uri,但e.Content为null。

    这个 Content 财产 NavigationEventArgs Frame.Navigated 内容

    private void RootFrame_Navigated(object sender, NavigationEventArgs e)
    {
        System.Diagnostics.Debug.WriteLine(e.Content.ToString()); 
    }
    

    如果你想得到网页的内容。你可以参考这个 reply . 有一些更新:

    启用外部网页在调用时激发ScriptNotify事件window.external.notify通知,则必须在 应用程序清单的部分。

    用于获取正文html的follow eval方法。

    string functionString = @"window.external.notify(document.getElementsByTagName('body')[0].innerHTML)";
    await Test.InvokeScriptAsync("eval", new string[] { functionString });
    

    你可以得到返回值表 ScriptNotify 事件处理程序。

    private void Test_ScriptNotify(object sender, NotifyEventArgs e)
    {
        var body = e.Value;
    }