JavaScript:文本区域滚动了多少?
我想知道
function getElementVerticalScroll(el){
return integer
}
I want to know how much is the <textarea>
or <div style="overflow:scroll">
scrolled. Vertically or horizontally. I expect an answer like this:
function getElementVerticalScroll(el){
return integer
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我已经填补了你的函数的空白:
I've filled in the blank space of your function:
如果您不想引入库,请查看元素的
scrollTop
属性:http://jsfiddle.net/pimvdb/GXGHB/2/。If you don't want to bring in a library, have a look at the
scrollTop
property of the element: http://jsfiddle.net/pimvdb/GXGHB/2/.使用 jQuery,我认为
$(element).scrollTop();
应该进行垂直查找。scrollLeft
表示水平方向。Using jQuery, I think
$(element).scrollTop();
should do the vertically-lookup. AndscrollLeft
for horizontal.