Quick way to clear all selections on a multiselect enabled <select> with jQuery?

后端 未结 13 2788
半阙折子戏
半阙折子戏 2020-12-09 07:52

Do I have to iterate through ALL the and set remove the \'selected\' attribute or is there a better way?

相关标签:
13条回答
  • 2020-12-09 07:56

    In order to clear all selection, I am using like this and its working fine for me. here is the script:

     $("#ddlMultiselect").multiselect("clearSelection");
    
     $("#ddlMultiselect").multiselect( 'refresh' );
    
    0 讨论(0)
  • 2020-12-09 07:56

    You can pass an empty array to unselect all the selection. Here goes an example. From documentation

    val() allows you to pass an array of element values. This is useful when working on a jQuery object containing elements like , , and s inside of a . In this case, the inputs and the options having a value that matches one of the elements of the array will be checked or selected while those having a value that doesn't match one of the elements of the array will be unchecked or unselected, depending on the type.

    $('.clearAll').on('click', function() {
      $('.dropdown').val([]);
    });
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    
    <select class="dropdown" multiple>
      <option value="volvo">Volvo</option>
      <option value="saab">Saab</option>
      <option value="opel">Opel</option>
      <option value="audi">Audi</option>
    </select>
    
    <button class='clearAll'>Clear All Selection</button>

    0 讨论(0)
  • 2020-12-09 08:00

    $("#ddlMultiselect").val('').trigger("change");

    for multi-select drop-down, it will clear displayed text.

    0 讨论(0)
  • 2020-12-09 08:00

    Assuming you are using Bootstrap multiselect dropdown by David Stutz

    $('#selectId').multiselect('deselectAll', false);
    

    But for some reason it does not work inside initialization method

    0 讨论(0)
  • 2020-12-09 08:04

    Simply find all the selected <option> tags within your <select> and remove the selected attribute:

    $("#my_select option:selected").removeAttr("selected");
    

    As of jQuery 1.6, you should use .prop instead of removing the attribute:

    $("#my_select option:selected").prop("selected", false);
    
    0 讨论(0)
  • 2020-12-09 08:06

    Shortest and quickest way to remove all the selection, is by passing empty string in jQuery .val() function :

    $("#my_select").val('')
    
    0 讨论(0)
提交回复
热议问题