Jquery 对话框窗口大小

发布于 2024-10-21 18:24:54 字数 95 浏览 2 评论 0原文

如何使 JQuery 对话框大小适合窗口大小?

我尝试使用“auto”,但这只是使其大小适合其元素,而且我不想指定 px 的 b/c,因为这不会是动态的。谢谢!

How do I make a JQuery dialog size to the size of the window?

I tried using 'auto' but that just makes it size to its elements, and I don't want to specifiy the px's exactly b/c that won't be dynamic. thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌︼了一个春 2024-10-28 18:24:54

我在这里进行了一些猜测,但是您可以使用以下方法获取窗口的大小:

var windowWidth = $(window).width();
var windowHeight = $(window).height();

因此,我将采用该值,并将该值传递给 jQuery 对话框。

$( ".dialog" ).dialog({ height: windowHeight, width: windowWidth });

I'm taking a little bit of a guess here, but you can get the size of the window using:

var windowWidth = $(window).width();
var windowHeight = $(window).height();

So, I would take that, and pass that value to the jQuery Dialog.

$( ".dialog" ).dialog({ height: windowHeight, width: windowWidth });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文