-1
描述: 我正在使用java腳本 我無法使用dom對象進行檢索。如何在html中的兩個窗口之間傳遞參數[父窗口和子窗口之間的值]
描述: 我正在使用java腳本 我無法使用dom對象進行檢索。如何在html中的兩個窗口之間傳遞參數[父窗口和子窗口之間的值]
從父窗口 嘗試這個 在第一取回值將使用
If you open child using
popupWindow = window.open("my.html",'some name','width=500,height=500');
In Child window:
//This gives DOM value of parent in child window.
window.opener.document.getElementById("your field name in parent window");
//setting value
window.opener['dataitem'] = document.getElementById("your field name in child window").value;
在父窗口:
//This gives DOM value of child in parent window.
var some_data = window['dataitem'];
希望這可以幫助你! 謝謝..
解釋更多。你想要什麼?你嘗試過什麼?你研究了什麼? –
你好朋友據我所知,你正試圖在父窗口和子窗口之間傳遞值。如果是這種情況,我知道一種方法。 –