📅  最后修改于: 2023-12-03 15:02:19.487000             🧑  作者: Mango
jQWidgets jqxListBox checkItem() 方法是用于选中 jqxListBox 中指定项的方法。选中项后,项将显示为带有复选框的选定状态。
$('#jqxListBox').jqxListBox('checkItem', item);
参数:
item
: 需要选中的项的索引或值。<div id="jqxListBox">
<div>选项 1</div>
<div>选项 2</div>
<div>选项 3</div>
<div>选项 4</div>
</div>
$(document).ready(function () {
$('#jqxListBox').jqxListBox({});
// 点击按钮选中第二项
$("#button").click(function () {
$('#jqxListBox').jqxListBox('checkItem', 1);
});
});
该方法没有返回值。
checkItem() 方法只适用于带有复选框的 jqxListBox。如果列表框没有复选框,则此方法将不起作用。
通过调用该方法,即可实现选中指定项的效果,而不需要手动点击该项的复选框。
如果需要取消勾选某项,可以使用 jqxListBox 的 uncheckItem() 方法。