4

请帮忙。

html:

<select id="select-client" class="form-control" style="width: 350px;"></select>

js:

$("#select-client").select2({
    ajax: {
        url: _app.url + "finduser",
        dataType: 'json',
        delay: 250,
        data: function (params) {
            return {
                q: params.term
            };
        },
        processResults: function (data) {
            return {
                results: data
            };
        },
        cache: true
    },
    escapeMarkup: function (markup) { return markup; },
    minimumInputLength: 2,
    templateResult: formatClientRepo,
    templateSelection: formatClientRepoSelection,
    placeholder: "Enter user name"
});

结果我收到了这个: http: //prntscr.com/76jxvi 我发现了很多变体,比如 select 中的空选项,或者在 select 中写占位符但什么也没有。

4

1 回答 1

6

https://jsfiddle.net/xqhp0z0x/1/

|| repo.text在此示例中,如果我们从中删除formatRepoSelection将不起作用。因为repo.text是占位符。

PS select2 4.0 不需要清空option标签即可placeholder工作

于 2015-05-19T05:23:09.503 回答