.scrollLeft()

Contents:

.scrollLeft() 官网原E文: Integer

描述: 为匹配的元素集合中获取第一个元素的滚动条的水平位置。

  • version added: 1.2.6.scrollLeft()

水平滚动位置是和像素值以上所隐藏的滚动区相同的。(The horizontal scroll position is the same as the number of pixels that are hidden from view above the scrollable area.)如果滚动条是在非常左边,或者这个元素没有可滚动的,那么这个数字是0

例子:

获取段落的scrollLeft。

<!DOCTYPE html>
<html>
<head>
  <style>
    p { margin:10px;padding:5px;border:2px solid #666; }
    </style>
  <script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
  <p>Hello</p><p></p>
<script>var p = $("p:first");
			$("p:last").text( "scrollLeft:" + p.scrollLeft() );

			</script>

</body>
</html>

Demo:

.scrollLeft( value ) 官网原E文: jQuery

描述 为匹配的元素集合中每个元素设置滚动条的水平位置。

  • version added: 1.2.6.scrollLeft( value )

    value一个用来设置滚动条水平位置的正整数。

水平滚动位置是和像素值以上所隐藏的滚动区相同的。(The horizontal scroll position is the same as the number of pixels that are hidden from view above the scrollable area.) scrollLeft为每个匹配元素设置滚动条的水平位置。

Example:

设置一个div的scrollLeft。

<!DOCTYPE html>
<html>
<head>
  <style>
  div.demo {
  background:#CCCCCC none repeat scroll 0 0;
  border:3px solid #666666;
  margin:5px;
  padding:5px;
  position:relative;
  width:200px;
  height:100px;
  overflow:auto;
  }
  p { margin:10px;padding:5px;border:2px solid #666;width:1000px;height:1000px; }
	</style>
  <script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
  <div class="demo"><h1>lalala</h1><p>Hello</p></div>
<script>$("div.demo").scrollLeft(300);
</script>

</body>
</html>

Demo:

jQuery 1.6 API 中文版Clove整理、修订