我有一个问题,我尝试了从索引页面重定向到另一个.html文件的所有可能的事情。 window.open,window.location,window.location.href
但我只在URL的末尾得到?
。这是我的代码:
function login() {
var username = document.getElementById("username").value;
var password = document.getElementById("password").value;
if(username=='admin' && password=='123') {
window.location = "phonegap/menu.html";
}
else {
alert('Wrong pw or username!');
}
这是结果的图片,其中包含所有可能的功能。 http://i.stack.imgur.com/BT689.png
答案 0 :(得分:0)
你也可以使用下面的代码重定向,请用于测试使用实时网址
window.location = "https://www.google.co.in/";
var ref = window.open('http://apache.org', '_blank', 'location=yes');
window.location.href = "http://stackoverflow.com";