我在我的 cordova 应用程序中使用 inAppBrowser 插件。
我想在 webview 中加载外部 url。
这是我的 www/index.html 文件代码
<!DOCTYPE html>
<html>
<head>
<title>InAppBrowser.addEventListener Example</title>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
var ref = window.open('https://www.google.com', '_blank', 'location=no,toolbar=no'); //This is working
var ref = window.open('https://www.google.com', '_self'); //This is not working
}
</script>
我不知道为什么会这样。
我添加了inappbrowser插件。
Best Answer-推荐答案 strong>
您可能想尝试 cordova.InAppBrowser.open() 而不是 window.open() 。
关于javascript - Cordova window.open _self 不工作但 _blank 工作,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/36054530/
|