如何将 zindex 值添加到以下字符串,以便弹出窗口始终位于顶部?
string winopen = "Window.Open('Details - " + name + "', 'test.aspx', 'dest=" + destination.Value + "&id=" + id.Value + "', [250,250], [100,100], true); return false;";
button1["onclick"] = winopen ;
如何将 zindex 值添加到以下字符串,以便弹出窗口始终位于顶部?
string winopen = "Window.Open('Details - " + name + "', 'test.aspx', 'dest=" + destination.Value + "&id=" + id.Value + "', [250,250], [100,100], true); return false;";
button1["onclick"] = winopen ;
你有没有尝试让你的窗口成为焦点?
var mywindow;
function OpenWindowOnTop(url)
{
mywindow=window.open(url,'name', ... snip ...[250,250], [100,100], true);
if (window.focus) {
mywindow.focus()
}
}
您也可以尝试使用Dependent Parameter,它将弹出作为子窗口打开。
添加winopen.focus();
以将焦点带到新创建的窗口。