jQuery scrollLeft() 方法

实例

返回 <div> 元素的水平滚动条位置:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("button").click(function(){
  8. alert($("div").scrollLeft() + " px");
  9. });
  10. });
  11. </script>
  12. </head>
  13. <body>
  14. <div style="border:1px solid black;width:100px;height:130px;overflow:auto">
  15. The longest word in the english dictionary is: pneumonoultramicroscopicsilicovolcanoconiosis.
  16. </div><br>
  17. <button>Return the horizontal position of the scrollbar</button>
  18. <p>Move the scrollbar to the right and click the button again.</p>
  19. </body>
  20. </html>

定义与用法

scrollLeft() 方法设置或返回所选元素的水平滚动条位置。

提示: 当滚动条位于最左侧时,位置为 0。

当用于返回该位置时:

此方法返回第一个匹配元素的滚动条的水平位置。

当用于设置位置时:

此方法为所有匹配的元素设置滚动条的水平位置。


语法

返回水平滚动条位置:

  1. $(selector).scrollLeft()

设置水平滚动条位置:

  1. $(selector).scrollLeft(position)
参数描述
position以像素为单位指定水平滚动条的位置

更多实例

如何设置元素的水平滚动条位置

分类导航