我正在使用 Phonegap 编写一个 ios 应用程序,我在我的应用程序中需要的是,当 phonegap 调用 index.html 时,html 页面会将用户重定向到我的网站,事情是 html 不会将应用程序重定向到我的网站,我不在乎电话间隙是否打开了 safari 我只需要它将它重定向到我的网站我的代码是:
<html>
<head>
<script type="text/javascript">
function loadlink()
{
window.open("www.cnn.com");
}
</script>
</head>
<body onload="loadlink()">
</body>
</html>