📅  最后修改于: 2023-12-03 15:32:16.872000             🧑  作者: Mango
indeterminateIndex()
方法是 jQWidgets 的 jqxDropDownList
组件提供的一个 API 方法,用于获取多选下拉框中暂未确定选中状态的选项的索引。
indeterminateIndex(): number[]
返回一个数组,数组元素是 MultiSelect 下拉框中暂未确定选中状态的选项的索引。如果没有暂未确定的选项,返回一个空数组。
// 获取多选下拉框中暂未确定选中状态的选项的索引
let indeterminate = $("#multiselect").jqxDropDownList("indeterminateIndex");
// 显示暂未确定的选项的索引
console.log(indeterminate);
indeterminateIndex()
方法只适用于 jqxDropDownList
组件中的下拉框。checkboxes
属性设置为 true
,并且存在选中的选项,但是未全部选中时,该选项的状态为暂未确定选中状态。indeterminateIndex()
方法返回。