jQWidgets jqxScrollView changePage()方法

  • Post category:jquery

以下是关于 jQWidgets jqxScrollView 组件中 changePage() 方法的详细攻略。

jQWidgets jqxScrollView changePage() 方法

jQWidgets jqxScrollView 组件的 changePage()用于将滚动视图滚动到指定的页面。

语法

$('#scrollView').jqxScrollView('changePage', index);

参数

  • index:Number 类型,表示要滚动到的页面的索引。索引从 0 开始。

示例

以下两个示例演示如何使用 changePage() 方法。

示例 1

$('#page1Button').click(function () {
    $('#scrollView').jqxScrollView('changePage', 0);
});

$('#page2Button').click(function () {
    $('#scrollView').jqxScrollView('changePage', 1);
});

在示例 1 中,我们创建了两个按钮,分别用于滚动视图到第一页和第二页。当用户单击按钮时,changePage() 方法将被调用,将滚动视图滚动到指定的页面。

示例 2

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>jQxScrollView Change Page Method</title>
    <link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/jqx.base.css" type="text/css" />
    <script type="text/javascript" src="https://jqwidgets.com/public/jqwidgets/scripts/jquery-3.5.1.min.js"></script>
    <script type="text/javascript" src="https://jqwidgets.com/public/jqwidgets/scripts/jqxcore.js"></script>
    <script type="text/javascript" src="https://jqwidgets.com/public/jqwidgets/scripts/jqxbuttons.js"></script>
    <script type="text/javascript" src="https://jqwidgets.com/public/jqwidgets/scripts/jqxscrollview.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            $('#scrollView').jqxScrollView({
                width: 300,
                height: 200,
                showButtons: true,
                slideShow: true,
                theme: 'energyblue'
            });

            $('#page1Button').click(function () {
                $('#scrollView').jqxScrollView('changePage', 0);
            });

            $('#page2Button').click(function () {
                $('#scrollView').jqxScrollView('changePage', 1);
            });
        });
    </script>
</head>
<body>
    <div id="scrollView">
        <div><img src="https://jqwidgets.com/public/jqwidgets/styles/images/slider1.jpg" /></div>
        <div><img src="https://jqwidgets.com/public/jqwidgets/styles/images/slider2.jpg" /></div>
        <div><img src="https://jqwidgets.com/public/jqwidgets/styles/images/slider3.jpg" /></div>
        <div><img src="https://jqwidgets.com/public/jqwidgets/styles/images/slider4.jpg" /></div>
    </div>
    <button id="page1Button">Page 1</button>
    <button id="page2Button">Page 2</button>
</body>
</html>

在示例 2 中,我们创建了一个滚动视图和两个按钮,分别用于滚动视图到第一页和第二页。当用户单击按钮时,changePage() 方法将被调用,将滚动视图滚动到指定的页面。

注意事项

  • changePage() 方法用于将滚动视图滚动到指定的页面。
  • changePage() 方法通过 jqxScrollView 方法调用。
  • changePage() 方法可以与 jqxScrollView 方法一起使用。

总之,changePage() 方法用于将滚动视图滚动到指定的页面。以上两个示例演示了如何使用 changePage() 方法。