我試圖從一個頁面傳遞一個變量,加載另一個頁面並輸入該信息。 是這樣的:將變量傳遞到新頁面
當127.0.0.1/test.html & ID = 1234
location.href = "127.0.0.1/newpage.html"
if (location.href == newpage.html){
var e = document.GetElementById("Loginbx");
e.Value = ID
}
我沒有訪問和修改127.0.0.1/test.html也不newpage.html但想將變量從另一個傳遞給它們。這可能嗎?
當您使用'location.href'更改位置時,腳本執行將停止並且新頁面將被加載。 – 2010-06-10 16:53:17