所以我从这里使用多选小部件:http ://www.erichynds.com/examples/jquery-ui-multiselect-widget/demos/ ,它在这种情况下工作正常。当我使用与普通(仅选择 1 个选项)下拉列表严格相同的下拉样式(看起来一致)时,我的问题是下拉显示 1 Selected。我需要更改它以显示选定的选项,因此红色、黄色、蓝色中的“红色”。确定所选选项文本的代码如下:
$.widget("ech.multiselect", {
// default options
options: {
header: true,
height: 175,
minWidth: 225,
classes: '',
checkAllText: 'Check all',
uncheckAllText: 'Uncheck all',
noneSelectedText: 'Select options',
selectedText: '# selected',
selectedList: 0,
show: null,
hide: null,
autoOpen: false,
multiple: true,
position: {},
appendTo: "body"
}
因此,如果下拉列表具有 .normal 类,我需要 selectedText 来显示所选选项。有任何想法吗?提前致谢。