我使用select2插件显示自动建议的下拉列表和标签。
以下是我的代码的外观:
$('.select2Member').select2({
multiple: true,
minimumInputLength :1,
placeholder : cake.message.notice.b,
ajax {
url ": cake.url.a ,
dataType : json,
quietMillis : 100,
cache : true,
data :function(term,page){
return{
term: term,
page_limit : 10
};
}
}
});
除非字段为空,否则一切似乎都能正常工作。只有这样下拉消息才会显示“找不到匹配项”。
我想在字段为空时删除默认消息。
我尝试将以下参数添加到Jquery:
tags:[''],
tokenSeparators: [','],
formatNoMatches: function() {
return '';
},
dropdownCssClass: 'select2-hidden'
还添加了一个带有display:none!important属性的select2-hidden类。
在上述情况下,它会被隐藏,但即使搜索成功也不会显示。
任何专家建议都将受到高度赞赏。