📅  最后修改于: 2023-12-03 15:02:17.540000             🧑  作者: Mango
jQWidgets jqxComboBox是一个基于jQuery的UI组件,用于显示一组选项供用户选择。getSelectedItem()是jqxComboBox的一个方法,用于获取当前选中的项目。
$(selector).jqxComboBox('getSelectedItem');
参数:无
返回值:对象,该对象包含了当前选中项目的各种信息,包括但不限于value、label以及index等。
// 初始化jqxComboBox
$('#comboBox').jqxComboBox({
source: ['Apple', 'Banana', 'Cherry', 'Date'],
selectedIndex: 0,
width: '200px',
height: '25px'
});
// 获取当前选中项目
var selectedItem = $('#comboBox').jqxComboBox('getSelectedItem');
console.log(selectedItem);
// 输出结果:
// Object { label: "Apple", value: "Apple", index: 0 }