gpt4 book ai didi

cordova - 从inappbrowser PhoneGap获取html?

转载 作者:行者123 更新时间:2023-12-02 10:41:43 24 4
gpt4 key购买 nike

我在phonegap上做了一个应用程序。当我单击工具栏上的“关闭”按钮时,我需要从 inappbrowser 获取内容 html,但它不起作用。这是我的代码:

var handleClose = function() {
// get content html from here
}

ref.addEventListener('exit', handleClose);

有人可以帮助我吗?

最佳答案

为了帮助将来的任何人,我刚刚偶然发现了同样的问题并找到了解决方案。

var inAppRef = cordova.InAppBrowser.open('http://apache.org', '_blank', 'location=yes');
inAppRef.addEventListener('loadstop', function() {
inAppRef.executeScript({
code: "document.getElementsByTagName('html')[0].innerHTML"
}, function(html) {
alert(html);
});
});

请记住,您需要通过phonegap/cordova引用并包含InAppBrowser。

关于cordova - 从inappbrowser PhoneGap获取html?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28037974/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com