我有这个代码
var targetWin = window.open('toto.php', arg1, 'toolbar=no, location=no, directories=no, status=' + status + ', menubar=no, scrollbars=' + scroll + ', resizable=' + resizable + ', copyhistory=no, width=' + w + ', height=' + h + ', top=' + top + ', left=' + left);
在“ toto.php”中,我有一个javascript函数: window.returnValue = 258;
执行“ window.open”后,我需要获取returnValue。
我尝试了targetWin ['resultValue']或targetWin.resultValue,但没有结果。 我能做什么 ? 感谢您的帮助。