如何在Chrome应用中访问webview内容

时间:2014-06-06 20:09:31

标签: javascript webview google-chrome-app

我正在编写一个Chrome应用程序,它通过加载外部网站。 在加载的页面中执行JavaScript可以很好地使用:

webview.executeScript();

但是现在我需要在我的主Chrome应用程序中读取该加载的外部网站的HTML内容。

我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:11)

您也可以使用executeScript:

webview.executeScript(
    {code: 'document.documentElement.innerHTML'},
    function(results) {
      // results[0] would have the webview's innerHTML.
    });