gpt4 book ai didi

asp.net - 根据 asp.net 中的屏幕分辨率调整模式弹出窗口的大小

转载 作者:行者123 更新时间:2023-12-01 02:02:36 24 4
gpt4 key购买 nike

我的应用程序是在 asp.net 4.0 中,我在我的应用程序中使用 AJAX 模型弹出扩展程序,以便在 GridView 中单击公司名称时显示 xyz 公司的详细信息。因此,当我在大屏幕上查看同一页面时,在模型弹出窗口中显示公司详细信息时,弹出窗口的位置发生了变化。

任何人都可以告诉我如何根据屏幕分辨率设置页面上弹出模型的位置。

以下是我尝试动态设置宽度和高度但没有成功的代码。

<script type="text/javascript">
function fnCalculate()
{
alert(screen.width+'x'+screen.height);
w = screen.width * 0.8 ;
h = screen.height * 0.8 ;
document.getElementById("#content").style.width = w;
document.getElementById("#content").style.height = h;
document.getElementById("#content").style.left = w*h;
}
</script>

最佳答案

我认为将高度和宽度设置为百分比会更容易。我将设置 topleft

无论屏幕大小如何,弹出窗口 都会占据您应用的百分比。

#content{ position: absolute;height:50%;width:50%;}

关于asp.net - 根据 asp.net 中的屏幕分辨率调整模式弹出窗口的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13701372/

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