选择2下拉列表在第三个选定项目上显示“x selected”

时间:2016-06-10 08:58:45

标签: javascript jquery

以下代码使用select2来同时从下拉列表中进行多项选择。我的问题是如何在第三种选择之后显示“x选择”,而不是所有选择并拥有一个巨大的文本框?

<select multiple id="e1" style="width:300px">
        <option value="AL">Alabama</option>
        <option value="Am">Amalapuram</option>
        <option value="An">Anakapalli</option>
        <option value="Ak">Akkayapalem</option>
        <option value="WY">Wyoming</option>
    </select>

$("#e1").select2();

我这里有一个jSfiddle

http://jsfiddle.net/ishanbakshi/fyhsz9ra/

2 个答案:

答案 0 :(得分:1)

我努力工作并设法为您提供jQuery解决方案。将您的JavaScript更改为:

$("#e1").select2();

$(document).ready(function(){
var showHugeSelect = false;

$("#s2id_e1 ul.select2-choices").prepend("<button id='btnE1ShowAll' style='display: none;' />")

$("#btnE1ShowAll").click(function(e){
$("#s2id_e1 .select2-search-choice").show();
$("#btnE1ShowAll").hide();
showHugeSelect = true;

function hideHugeSelect(){
showHugeSelect = false;
}

setTimeout(hideHugeSelect, 5000);
})

setInterval(customizeSelectE1, 500);

function customizeSelectE1(){
var selectedCount = $("#s2id_e1 .select2-search-choice").length;

if(selectedCount > 2 && !showHugeSelect){
$("#s2id_e1 .select2-search-choice").hide();
$("#btnE1ShowAll").html(selectedCount + " selected").show();
}
}


})

我已经在jsFiddle中检查了它并且它完美无缺。它不可能做出更优雅的解决方案。如果你真的想要一个更优雅的,你需要开发自己的控件或更改Select2的源代码。

答案 1 :(得分:1)

我创建了一个fiddle。试试这种方式..

$("#e1").select2().on('change', function() {
  if ($(this).val().length >= 3) {
    var html = $('.select2-choices li:first-child').clone();
    $('.select2-choices li:not(:last-child)').remove();
    var divContent = html.find('div').html($(this).val().length + ' Selected');
    $('.select2-choices').prepend(html).find('a').on('click', function() {
      $(this).parent('li').remove();
      $("#e1").val('');
    });
  }
});