1

我的网站上有一些弹出窗口,我想在新窗口中打开下一个弹出窗口。但是,它当前在同一窗口中打开。我怎样才能解决这个问题?

function pop_up(url) {
    newwindow = window.open(url, 'name', 'height=517,width=885,scrollbars=yes,
        toolbar=no,menubar=no,resizable=yes,location=no,directories=no,status=no,
        titlebar=no,left=400,top=120');

    if (window.focus) { newwindow.focus() }
        return false;
}

Page.ClientScript.RegisterStartupScript(GetType(), "popup", 
    "pop_up('" + "PopUpEmailing.aspx" + "');", true);
4

2 回答 2

5

将窗口的名称从“name”更改为“_blank”。改变

newwindow = window.open(url, 'name', 'height=517,width=885,scrollbars=yes,toolbar=no,menubar=no,resizable=yes,location=no,directories=no,status=no,titlebar=no,left=400,top=120');

newwindow = window.open(url, '_blank', 'height=517,width=885,scrollbars=yes,toolbar=no,menubar=no,resizable=yes,location=no,directories=no,status=no,titlebar=no,left=400,top=120');
于 2013-01-29T22:17:21.427 回答
3

为每个弹出窗口使用不同的窗口名称。

var windowCount = 0;
function pop_up(url) {
     newwindow = window.open(url, 'name' + windowCount++, 'height=517,width=885,scrollbars=yes,toolbar=no,menubar=no,resizable=yes,location=no,directories=no,status=no,titlebar=no,left=400,top=120');
     if (window.focus) { newwindow.focus() }
     return false;


   }

确保您保留窗口名称的有效标识符(以字母或下划线开头,没有嵌入空格),否则 IE 会不高兴。

(如果您不关心名称是什么,则使用“_blank”作为名称更简单。)

于 2013-01-29T22:16:10.823 回答