2012-11-20 69 views
1

我想自動改變頁面打開新的一頁,我會用window.location與相對外部

哪能屬性rel="external"添加到window.location

還是有方法的jQuery?

第1頁:

case 'A1': 
console.log("id_groupe_du_page "+ id_groupe_du_page); 
window.location("../etapeA1.html"); 

第2頁:2個JS沒有運行

+3

這個'rel =「external」'會做什麼?我沒有看到它在JS上下文有意義 –

+0

我的問題是,當我更改第二頁JavaScript代碼不執行,這就是爲什麼我應該使用rel =「external」 –

+0

您的意思是導航到外部網站你的。如果是這樣'external site' – Bruno

回答

0

你的問題是無關的在新標籤打開窗口頁面的

$("#A1").live('pageshow', function() 
     { 

alert("A1 executer"); 
     } 
); 

代碼。 JavaScript中有一些錯誤會導致它不會觸發。

第2頁更改JavaScript來:

$('document').ready(function() { 

    alert("A1 executer"); 

}); 

也爲1.7 .live已被廢棄,你應該避免使用。 Reference