jQuery / JS 获取文本区域的滚动条高度
我有一个固定高度的文本区域。当用户在文本区域中键入文本时,用户在其中键入一些文本后将显示滚动条。
如何使用 jQuery 或纯 JavaScript 获取滚动条高度?我已经搜索了几个小时,但找不到任何东西。我不能只插入一个 div 并通过 div 偏移量获取滚动条高度,因为文本区域不允许有子元素。
请不要给我一个可以完成这项工作的 jQuery 插件的链接。我想学点东西。
I've got a textarea with a fixed height. When the user types text into the textarea a scrollbar will show up after the user typed some text in it.
How can I get the scrollbar height using jQuery or plain JavaScript? I've been searching for this for hours, but couldn't find anything. I can't just insert a div and get the scrollbar height via the div offset because a textarea is not allowed to have child elements.
Please don't give me a link to a jQuery Plug-In that does the job. I want to learn something.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
返回一个整数(像素)
returns an integer (pixels)
请注意,在比较滚动高度时,应排除文本区域的上内边距和下内边距。
例子
Please note that you should exclude the upper padding and the lower padding of the textarea while comparing the scrollHeight.
Example