如何使用 jQuery 滚动到特定项目? - How to scroll to specific item using jQuery?

问题:

I have a big table with vertical scroll bar.我有一个带有垂直滚动条的大桌子。 I would like to scroll to a specific line in this table using jQuery/JavaScript.我想使用 jQuery/JavaScript 滚动到此表中的特定行。

Are there built-in methods to do this?是否有内置方法可以做到这一点?

Here is a little example to play with.这是一个可以玩的小例子。

div { width: 100px; height: 70px; border: 1px solid blue; overflow: auto; }
<div> <table id="my_table"> <tr id='row_1'><td>1</td></tr> <tr id='row_2'><td>2</td></tr> <tr id='row_3'><td>3</td></tr> <tr id='row_4'><td>4</td></tr> <tr id='row_5'><td>5</td></tr> <tr id='row_6'><td>6</td></tr> <tr id='row_7'><td>7</td></tr> <tr id='row_8'><td>8</td></tr> <tr id='row_9'><td>9</td></tr> </table> </div>


解决方案:

参考一: https://stackoom.com/question/CBwp
参考二: How to scroll to specific item using jQuery?
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章