目录

scrollLeft( )

描述 (Description)

scrollLeft( )方法获取第一个匹配元素的向左滚动偏移量。

此方法适用于可见元素和隐藏元素。

语法 (Syntax)

以下是使用此方法的简单语法 -

<i>selector</i>.scrollLeft( )

参数 (Parameters)

以下是此方法使用的所有参数的说明 -

  • NA

例子 (Example)

以下是一个简单的例子,简单地显示了这种方法的用法 -

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" 
         src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
      <script type = "text/javascript" language = "javascript">
         $(document).ready(function(){
            $("div.demo").scrollLeft( 200 );
            $("div.demo").mousemove(function () {
               var left = $("div.demo").scrollLeft();
               $("#result").html("left offset: <span>" + left + "</span>.");
            });
         });
      </script>
      <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;}
         div.result{margin:10px; width:100px; height:100px; margin:5px;
            float:left; background-color:blue;}
         p { margin:10px; padding:5px; border:2px solid #666; 
            width:1000px; height:1000px;}
      </style>
   </head>
   <body>
      <div class = "demo"><p>Hello</p></div>
      <span>Scroll horizontal  button to see the result:</span>
      <div class = "result"><span id = "result"></span></div>
   </body>
</html>

这将产生以下结果 -

新页面打开
↑回到顶部↑
WIKI教程 @2018