2011-11-09 116 views
1

我是jQuery的新手。我在我的Web應用程序的主頁上有一個按鈕,它會創建一個登錄彈出窗口。如果用戶輸入正確的密碼,那麼彈出窗口應該消失,創建該彈出窗口的頁面應該到該用戶的歡迎頁面。如果用戶輸入正確的密碼,我知道如何消除彈出窗口。我怎麼能告訴瀏覽器窗口創建該彈出窗口去歡迎頁面?提前致謝。如何重定向創建彈出窗口的頁面,使用jQuery創建彈出窗口?

+0

是一個彈出,就像一個模式彈出,或像90年代晚期糟糕的彈出窗口? –

+0

我使用這個函數創建了彈出窗口:function popitup(url){ \t \t \t \t newwindow = window.open(url,'name','width = 656,height = 443'); \t \t \t \t如果(window.focus){newwindow.focus()} \t \t \t \t返回假; \t \t \t}任何其他方式使一個花哨的彈出。 – Piscean

回答

3

我相信用javascript可以重定向與父窗口:

window.opener.location.href = <your url>; 

然後只需關閉彈出:

window.close(); 
2

你不需要這個jQuery。一些簡單的JavaScript應該可以做到。

//reload the parent window 
//window.opener.location.reload(); 

//to change the parent window location 
window.opener.location.href = "welcome.htm";  

//close the current window 
self.close(); 
+0

對不起,我以爲你想重新加載頁面。編輯我的答案。 –