2013-04-30 80 views
-1

我想重定向到一個新的頁面在同一個目錄上的按鈕點擊一個頁面。重定向一個新的頁面按鈕點擊

目錄結構:主(文件夾) - 按鈕>的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

只是改變爲'location.href =「home.html'' – Groovetrain 2013-04-30 12:43:50

+0

了window.location = 'home.html做爲'; – pmandell 2013-04-30 12:43:52

+0

@Siri Sireesha:只是提到..我希望你沒有在JavaScript文件中存儲用戶名和密碼..因爲每個人都可以閱讀它們 – Catalin 2013-04-30 12:46:15

回答

0
window.location = window.location.href.replace("index.html","home.html"); 
+0

非常感謝,它爲我工作 – 2013-04-30 12:48:35

+0

高興地幫助你Siri。 – 2013-04-30 12:51:10

0

使用此:

window.location = "put url here" 
0

嘗試

window.location.href('home.html'); 
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"); 
0

請使用window.location.href

window.location.href='home.html' 
相關問題