Using iphone 5se. IOS 10. Phonegap v0.4.5
我尝试过多种方法从index.html打开指向另一个页面的链接。不管用。标准输入“提交”按钮也是如此。仅在Target更改为_System时才有效。然后,这会导致Safari浏览器在Safari浏览器中打开我的目标页面。有效地导航离开我的phonegap窗口。尝试了各种访问权限。 例如。无法在手机上的应用程序窗口中打开任何页面。
<script>
function loginCheck()
{
alert("Login");
window.open("http://192.168.1.111:3000/user_login.html","_self");
}
</script>
<input type="submit" class="submitbtn" name="submit" id="submit" value="Login" onclick="loginCheck()">