jquery 页面分割器高度以适合用户屏幕

发布于 2024-10-07 03:37:44 字数 413 浏览 3 评论 0原文

我在 asp.net 应用程序中使用 jquery page-splitter 插件, 从这里: http://methvin.com/splitter/

我的页面结构如下:

// div1 holds the page header // div 2 holds some page content // div 3 - this holds the page splitter

分割器插件要求我指定静态高度,这会产生问题 当屏幕尺寸变化时。

我希望能够精确地以像素为单位设置分页器高度,以便它适合 任何屏幕尺寸,并且不会溢出,在页面中创建垂直滚动条。 可以这样做吗?

i am using a jquery page-splitter plugin in an asp.net application,
from here: http://methvin.com/splitter/

the structure of my page is as follows:

// div1 holds the page header

// div 2 holds some page content

// div 3 - this holds the page splitter

The splitter plugin requires me to specify a static height and this creates problems
when the screen size varies.

I want to be able to set the page splitter height exactly in pixels so that it fits
any screen size and does not overflow creating vertical scroll bars in the page.
Is it possible to do that ?

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

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

发布评论

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

评论(1

骄傲 2024-10-14 03:37:44

您可以使用 $(document).height() 获取文档大小,或使用 $(window).height() 获取窗口大小。

从那里,您可以使用如下方式设置页面加载时拆分器 div 的大小:

$(document).ready(

    function() {

        $("#splitterID").css("height", $(document).height() + "px");


                })

如果您发布您正在使用的代码示例,如果上述方法不适合您,我们可能会找到另一个解决方案。

You can get the document size using $(document).height(), or the window size using $(window).height().

From there you can set the size of the splitter div when the page loads using something like this:

$(document).ready(

    function() {

        $("#splitterID").css("height", $(document).height() + "px");


                })

If you post an example of the code you're using we might be able to sort out another solution if the above doesn't work for you.

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