我正在尝试打开一个窗口,然后将原始页面重定向到新位置。它会打开窗口,但在重定向父页面之前,它也会关闭新窗口。我该如何解决?
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”;
}
答案 0 :(得分:0)
尝试使用onbeforeunload方法在打开的窗口关闭之前触发重定向。