jQWidgets jqxScrollView currentPage 属性

  • Post category:jquery

以下是关于 jQWidgets jqxScrollView 组件中 currentPage 属性的详细攻略。

jQWidgets jqxScrollView currentPage 属性

jQWidgets jqxScrollView 组件的 currentPage 属性用于获取或设置当前滚动视图的页面索引。

语法

// 获取 currentPage 属性值
var currentPage = $('#scrollView').jqxScrollView('currentPage');

// 设置 currentPage 属性值
$('#scrollView').jqxScrollView({ currentPage: 2 });

参数

  • currentPage():无参数,用于获取 currentPage 属性值。
  • currentPage(value):value 为 Number 类型,表示设置的 currentPage 属性值。

示例

以下两个示例演示如何使用 currentPage 属性。

示例 1

// 获取 currentPage 属性值
var currentPage = $('#scrollView').jqxScrollView('currentPage');

// 设置 currentPage 属性值
$('#scrollView').jqxScrollView({ currentPage: 2 });

在示例 1 中,我们使用 currentPage() 方法获取了 currentPage 属性值,并使用 currentPage(value) 方法将 currentPage 属性值设置为 2。

示例 2

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>jQxScrollView Current Page</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'
            });

            // 获取 currentPage 属性值
            var currentPage = $('#scrollView').jqxScrollView('currentPage');
            console.log(currentPage); // 输出:0

            // 设置 currentPage 属性值
            $('#scrollView').jqxScrollView({ currentPage: 2 });
        });
    </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>
</body>
</html>

在示例 2 中,我们创建了一个滚动视图,并使用 currentPage 属性获取了当前页面的索引。然后,我们将 currentPage 属性值设置为 2。

注意事项

  • currentPage 属性用于获取或设置当前滚动视图的页面索引。
  • currentPage 属性通过 jqxScrollView 方法调用。
  • currentPage 属性可以与 jqxScrollView 方法一起使用。

总,currentPage 属性用于获取或设置当前滚动视图的页面索引。以上两个示例演示了如何使用 currentPage 属性。