我有手机上显示的html页面。用户输入一些信息并将其发布到我的localhost(WAMP)上的php页面。在php页面处理数据之后,它应该将用户重定向到存储在phonegap中的另一个页面!如何指定此页面的地址?
在我的php页面中我这样做了:
header("Location: blank.html");
在blank.html中:
<html>
<head>
<script type="text/javascript">
window.location.href = 'file:///android_asset/destinationPage.php';
</script>
</head>
<body>
</body>
</html>
由于某种原因,浏览器在blank.html停止,只显示一个没有重定向的空白页面。你能建议任何解决方案吗? 目标页面存储在C:\ PhoneGapProject \ www \ destinationPage.php
答案 0 :(得分:0)
使用
window.location.replace = 'http://yourpathtofile';
顺便说一下为什么这个default.html用java脚本。从Php代码本身重定向用户。