1
我想打開一個窗口,然後將原始頁面重定向到一個新的位置。它會打開窗口,但在重定向父頁面之前,它也會關閉新窗口。我該如何解決這個問題爲什麼這是關閉新的彈出窗口
function orderPrint() {
var n = new Object();
n. ID = <?php echo $ID->ID; ?>;
n.action = posttothispage.php";
n.target = popWinCenterScreen("/common/html/empty.htm", parseInt(window.screen.height * 0.8), 796, "resize");
myFuction.PostRequest(n);
window.location = 「someotherpagethanthis.php」;
}
什麼是'popWinCenterScreen'? – SLaks 2010-06-17 00:13:30
在你的問題中,代碼是否在語法上也是無效的?缺少一個''',在最後一行有捲曲引號而不是直引號。 – BalusC 2010-06-17 00:19:14