gpt4 book ai didi

asp.net - 打开一个弹出窗口最大化到用户的屏幕配置

转载 作者:行者123 更新时间:2023-12-01 23:45:23 25 4
gpt4 key购买 nike

打开根据用户屏幕配置最大化的弹出窗口的最佳方式是什么?我正在使用 C# ASP.NET 3.5 网站项目。

更新:

@Anthony - windows xp 任务栏覆盖了一些浏览器窗口。如何设置 maxmmumize 并停止在 windows xp 任务栏?

更新1:

我使用以下解决方案来最大化弹出窗口,但它首先打开窗口,然后将其移动到屏幕的左上角。有没有办法只在 0,0 位置打开弹出窗口?

function openMaxWindow(url) {
var name = "MyWindow";
var features = "status=1,toolbar=1,location=1,menubar=1,scrollbars=1,resizable=1,top=0,left=0,height=" + screen.availHeight + ",width=" + screen.availWidth;

var newWindow = window.open(url, name, features);
}

更新2:

弄清楚了,我需要将 top=0 和 left=0 添加到功能列表中。

最佳答案

使用javascript运行

var newWindow = window.open(); newWindow.resizeTo(screen.width, screen.height);

显然,您需要在 window.open() 语句中使用适当的参数。

This link also shows how to do it

编辑

newWindow.moveTo(0,0);
newWindow.resizeTo(screen.availWidth, screen.availHeight);

关于asp.net - 打开一个弹出窗口最大化到用户的屏幕配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/795740/

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