How to use Checkbox inside Select Option

前端 未结 12 2260
夕颜
夕颜 2020-11-22 09:15

The client has given me a design which has a Select Option menu containing a checkbox together with the item name as individual items in the list. Is there anyway possible t

12条回答
  •  一个人的身影
    2020-11-22 10:03

    The best plugin so far is Bootstrap Multiselect

    
    
    
    jQuery Multi Select Dropdown with Checkboxes
    
    
    
    
    
    
    
    
    
    
    
    
    


    Here's the DEMO

    $(function() {
    
      $('#chkveg').multiselect({
        includeSelectAllOption: true
      });
    
      $('#btnget').click(function() {
        alert($('#chkveg').val());
      });
    });
    .multiselect-container>li>a>label {
      padding: 4px 20px 3px 20px;
    }
    
    
    
    
    
    
    


提交回复
热议问题