gpt4 book ai didi

c# - 将 z-index 添加到窗口

转载 作者:行者123 更新时间:2023-12-02 19:32:20 25 4
gpt4 key购买 nike

如何将 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()
}
}

关于c# - 将 z-index 添加到窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11350856/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com