jquery 页面分割器高度以适合用户屏幕
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 $(document).height() 获取文档大小,或使用 $(window).height() 获取窗口大小。
从那里,您可以使用如下方式设置页面加载时拆分器 div 的大小:
如果您发布您正在使用的代码示例,如果上述方法不适合您,我们可能会找到另一个解决方案。
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:
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.