📅  最后修改于: 2023-12-03 15:02:19.535000             🧑  作者: Mango
jQWidgets jqxListBox getItems() 方法返回一个jqxListBox对象中所有的列表项(item)。在访问、操纵、或者清除 jqxListBox 对象中的列表项时,getItems() 方法具有很大的作用。
getItems(): any[]
该方法没有参数
返回包含所有列表项的数组。
以下示例展示了如何使用 jQWidgets jqxListBox getItems() 方法来获取 jqxListBox 控件中所有的列表项:
// 实例化jqxListBox控件
$('#myListbox').jqxListBox();
// 获取列表项并进行操作
let items = $('#myListbox').jqxListBox('getItems');
for (let i = 0; i < items.length; i++) {
items[i].disabled = true;
}
// 将更改的状态应用到jqxListBox控件上
$('#myListbox').jqxListBox('refresh');