我在coredova中开发混合应用程序。我的情况是当用户启动应用程序应用程序时会询问登录页面。
一旦用户提交凭据我想从我的本地加载一个html页面,即从xcode。
我尝试了不同的方法,但它没有用。有人建议尝试这样window.location="page2.html";
但是当我这样给出时我的服务器不会接受这个,即我想提交完整路径。
这是我的index.html
<html>
<script src="cordova-2.7.0.js"></script> <script src="js/index.js"></script>
<script language="javascript" type="text/jscript"> function DoLogin() { document.forms[0].action = "https://loginpage"; document.forms[0].submit(); } </script> <body > <formDraft
<html>
<script src="cordova-2.7.0.js"></script>
<script src="js/index.js"></script>
<script language="javascript" type="text/jscript">
function DoLogin() {
document.forms[0].action = "https://loginpage";
document.forms[0].submit();
}
</script>
<body >
<form method="post">
<h2>
Welcome ....
</h2>
<p>
Please login using Agent or Employee Id
</p>
<p>
<div>
User Name:<input type="text" id="Ecom_User_Id" style="width: 100px" name="User_ID" /><br />
Password:&x;&y;<input type="password" id="Password" style="width: 100px" name="Password" /><br />
<input type="submit" id="btnLogin" value="Login" onclick="javascipt:DoLogin();return false;" />
<input name="target" type="hidden" id="target" value="file:///www/About.html"/>
<input name="id" type="hidden" id="id" value="NLG" />
</div>
</p>
</form>
</html>
我尝试过这个值=“About.html”,但这是不可能的,并且尝试通过提供捆绑路径但不起作用。
任何人都可以帮助我。高度赞赏。
提前致谢。
答案 0 :(得分:3)
试
window.location.href="page2.html";
而不是
window.location="page2.html"