jQuery scrollLeft()的应用实例

jQuery scrollLeft()的应用实例

scrollLeft()方法是jQuery内置的方法,用于返回或设置滚动条的水平位置。

语法:

$(selector).scrollLeft(position)

参数:该方法接受单参数position,它是可选的。它用于指定水平滚动条的位置,单位是像素。

返回值:该方法返回滚动条的位置。

下面的例子说明了jQuery中的rollLeft()方法。

示例 1:

<!DOCTYPE html>
<html>
    <head>
        <title>scrollLeft method</title>
        <script src=
        "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
        </script>
          
        <!-- jQuery code to show the working of this method -->
        <script>
            (document).ready(function() {
                ("button").click(function() {
                    alert($("div").scrollLeft() + " px");
                });
            });
        </script>
        <style>
            div {
                border: 1px solid black;
                width: 140px;
                height: 120px;
                overflow: auto
            }
        </style>
    </head>
    <body>
        <div>
            welcome to GeeksforGeeks!. Welcome to GeeksforGeeks1.welcome
            to GeeksforGeeks!. Welcome to GeeksforGeeks1. Welcome to 
            GeeksforGeeks!. Welcome to GeeksforGeeks!.welcome to 
            GeeksforGeeks!. Welcome to GeeksforGeeks1. Welcome to GeeksforGeeks!.
        </div>
        <br>
        <!-- click on this button to get the position of the scrollbar -->
        <button>Click Here!</button>
       
    </body>
   
</html>

输出:
在点击按钮之前。
jQuery scrollLeft()的应用实例
箭头所示的位置返回。
jQuery scrollLeft()的应用实例

示例 2:

<!DOCTYPE html>
<html>
    <head>
        <title>scrollLeft method</title>
        <script src=
        "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
        </script>
          
        <!-- jQuery code to show the working of this method -->
        <script>
            (document).ready(function() {
                ("button").click(function() {
                    $("div").scrollLeft(100);
                });
            });
        </script>
        <style>
            div {
                border: 1px solid black;
                width: 140px;
                height: 120px;
                overflow: auto
            }
        </style>
    </head>
    <body>
        <div style="">
            welcome to GeeksforGeeks!. Welcome to GeeksforGeeks1.welcome
            to GeeksforGeeks!. Welcome to GeeksforGeeks1. Welcome to
            GeeksforGeeks!. Welcome to GeeksforGeeks!.welcome to 
            GeeksforGeeks!. Welcome to GeeksforGeeks1. Welcome to
            GeeksforGeeks!.
        </div>
        <br>
          
        <!-- click on this button to get the position
        of the scrollbar -->
        <button>Click Here!</button>
    </body>
</html>

输出:
在点击箭头所示的按钮位置之前。
jQuery scrollLeft()的应用实例

点击箭头所示的按钮位置后。
jQuery scrollLeft()的应用实例

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程