我正试图在页面上点击按钮时重定向到同一目录中的新页面。
目录结构:main(文件夹) - > 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")}
});
答案 0 :(得分:0)
使用此:
window.location = "put url here"
答案 1 :(得分:0)
window.location = window.location.href.replace("index.html","home.html");
答案 2 :(得分:0)
尝试
window.location.href('home.html');
答案 3 :(得分: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");
答案 4 :(得分:0)
请使用window.location.href
window.location.href='home.html'