Jquery DIV 元素上下滚动?
我有一个 div 和一些按钮。我已经将 div 固定为特定高度,并且隐藏了滚动条。通过单击按钮,我需要将 div 滚动到行尾。 为此,我使用了 $("#divid").height()
& $("#divid").offset().height
函数获取div的整个高度,但它返回我在css中指定的内容,如何获取DIV的整个高度。
I have a div and some buttons. I have fixed the div with a particular height, and i have hidden the scrollbar. By clicking on a button I need scroll the div to the end of the line.
for that I used $("#divid").height()
& $("#divid").offset().height
functions to get the entire height of the div but it returns what I have specified in the css, how to get the entire height of the DIV.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好在页面加载时在 javascript 中获取 div 的高度,然后在获得完整高度后在 javascript 中设置它的高度
It would be better to get the height of the div when the page loads, in javascript, then set it's height in javascript after you have the full height
这就是您要找的吗?
http://yelotofu.com/ 2008/10/jquery-如何判断是否滚动到底部/
Is that what you are looking for?
http://yelotofu.com/2008/10/jquery-how-to-tell-if-youre-scroll-to-bottom/