jQWidgets jqxListBox getSelectedItems()方法

  • Post category:jquery

jqxListBox 是 jQWidgets 提供的一种列表框控件,用于在 Web 应用程序中创建列表。getSelectedItems() 方法用于获取 jqxListBox 控件中已选中的项。以下是 jqxListBoxgetSelectedItems() 方法的详细说明:

getSelectedItems() 方法

getSelectedItems() 方法用于获取 jqxListBox 控件中已选中的项。该方法返回一个数组,该数组包含已选中的项。

// 获取 jqxListBox 控件中已选中的项
var selectedItems = $("#jqxListBox").jqxListBox("getSelectedItems");

示例

以下是两个示例,演示如何使用 getSelectedItems() 方法获取 jqxListBox 控件中已选中的项。

示例 1

在此示例中,我们创建了一个 jqxListBox 控件,并使用 selectIndex() 方法选中第一个和第三个项。然后,我们使用 getSelectedItems() 方法获取已选中的项,并将其输出到控制台。

<div id="jqxListBox">
    <div>Item 1</div>
    <div>Item 2</div>
    <div>Item 3</div>
</div>

<script>
    $(document).ready(function () {
        // 创建 jqxListBox 控件
        $("#jqxListBox").jqxListBox();

        // 选中第一个和第三个项
        $("#jqxListBox").jqxListBox("selectIndex", 0);
        $("#jqxListBox").jqxListBox("selectIndex", 2);

        // 获取已选中的项
        var selectedItems = $("#jqxListBox").jqxListBox("getSelectedItems");

        // 输出已选中的项到控制台
        console.log(selectedItems);
    });
</script>

示例 2

在此示例中,我们创建了一个 jqxListBox 控件,并使用 selectIndex() 方法选中第一个和第三个项。当用户单击按钮时,我们使用 getSelectedItems() 方法获取已选中的项,并将其输出到控制台。

<div id="jqxListBox">
    <div>Item 1</div>
    <div>Item 2</div>
    <div>Item 3</div>
</div>
<button id="btnGetSelectedItems">Get Selected Items</button>

<script>
    $(document).ready(function () {
        // 创建 jqxListBox 控件
        $("#jqxListBox").jqxListBox();

        // 选中第一个和第三个项
        $("#jqxListBox").jqxListBox("selectIndex", 0);
        $("#jqxListBox").jqxListBox("selectIndex", 2);

        // 监听按钮单击事件
        $("#btnGetSelectedItems").on("click", function () {
            // 获取已选中的项
            var selectedItems = $("#jqxListBox").jqxListBox("getSelectedItems");

            // 输出已选中的项到控制台
            console.log(selectedItems);
        });
    });
</script>

以上是 jqxListBoxgetSelectedItems() 方法的详细说明,以及两个示例说明。