-1

我正在尝试在页面中单击按钮时重定向到同一目录中的新页面。

目录结构:main(folder) --> index.html, home.html

index.html 在按钮单击上有登录部分我希望页面转到 home.html。

$('#login').click( function() {         
        var user = $("#user").val(); 
        var pass = $("#pass").val(); 
        if(user == "xyz" && pass =="testing1"){
        location.href('home.html');
        }else{alert("invalid credits")}
    });
4

5 回答 5

0

用这个:

window.location = "put url here"
于 2013-04-30T12:43:55.653 回答
0
window.location = window.location.href.replace("index.html","home.html");
于 2013-04-30T12:44:00.910 回答
0

尝试

window.location.href('home.html');
于 2013-04-30T12:44:07.583 回答
0

试试这个:

$('#login').click(function(){
  ...........
  document.location.href='the_link_to_go_to.html';
})

window.location.replace(...)最好模拟 HTTP 重定向

如果要模拟 HTTP 重定向,请使用location.replace.

window.location.href = 'the_link';
window.location.replace("the_link");
于 2013-04-30T12:44:41.123 回答
0

请用 window.location.href

window.location.href='home.html'
于 2013-04-30T12:46:03.280 回答