Jquery插件select2属性里面有 allowClear,minimumInputLength 这两个...
发布网友
发布时间:2024-10-24 11:34
我来回答
共1个回答
热心网友
时间:2024-10-30 14:33
说起来挺麻烦的,你参考下我的代码吧。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
$(form.name1).select2({
width: "160",
placeholder: "请输入用户名",
allowClear: true,
minimumInputLength: 1,
ajax: {
url: "/backend/points/requireName",
dataType: "json",
type: "POST",
data: function (term) {
return {
name: term
};
},
results: function (users, page, query) {
return {results: users};
}
},
initSelection: function (element, callback) {
var data = [{id: element.val(), text: element.val()}];
callback({id: element.val(), text: element.val()});//这里初始化
},
formatInputTooShort: "请输入用户名",
formatNoMatches: "没有匹配的用户",
formatSearching: "查询中..."
}).change(function () {
$form.submit();
});