Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法用 jQuery 设置 HTML 表格的滚动条偏移量?
在自动填充我的表(通过附加行)的 keyup 事件之后,我想将滚动条偏移设置到顶部。
谢谢
活动后使用
$('#element').scrollTop(0);
我正在使用http://www.farinspace.com/jquery-scrollable-table-plugin/
$('.tablescroll_wrapper').scrollTop(0);
成功了。谢谢 ;)