我正在创建一个Web应用程序,我有一个jquery函数来打开一个链接:
window.open(_url, "_self", 'width=800, height=600');
这适用于浏览器,但不适用于英特尔XDK。 window.open无法在网络应用上运行吗?
提前感谢任何帮助
答案 0 :(得分:1)
使用 _blank 代替 _self ,这将打开一个带有应用程序(InApp-browser)的弹出窗口,这是一个工作示例代码:
<!DOCTYPE html>
<html>
<head>
<title>Window.open</title>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0;" />
<script src="cordova.js"></script>
<script>
function openwin(){
window.open('http://intel.com', '_blank', '');
}
</script>
</head>
<body>
<button onclick="openwin()">window open</button>
</body>
</html>
答案 1 :(得分:0)
在Android上打开可以原生处理的链接时,我必须使用_system
,例如
mapUrl = 'http://maps.google.com/maps?daddr=...&saddr=...',
window.open(encodeURI(mapsUrl), '_system');
否则我会得到Your ... app has stopped working message.
。