登录 注册
当前位置:主页 > 资源下载 > 29 > jQuery select下拉框单选和多选插件.zip下载

jQuery select下拉框单选和多选插件.zip下载

  • 更新:2024-06-10 14:39:20
  • 大小:68KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

js代码 [removed][removed] [removed] $('.form-control-chosen').chosen({ allow_single_deselect: true, width: '100%' }); $('.form-control-chosen-required').chosen({ allow_single_deselect: false, width: '100%' }); $('.form-control-chosen-search-threshold-100').chosen({ allow_single_deselect: true, disable_search_threshold: 100, width: '100%' }); $('.form-control-chosen-optgroup').chosen({ width: '100%' }); $(function() { $('[title="clickable_optgroup"]').addClass('chosen-container-optgroup-clickable'); }); $(document).on('click', '[title="clickable_optgroup"] .group-result', function() { var unselected = $(this).nextUntil('.group-result').not('.result-selected'); if(unselected.length) { unselected.trigger('mouseup'); } else { $(this).nextUntil('.group-result').each(function() { $('a.search-choice-close[data-option-array-index="' $(this).data('option-array-index') '"]').trigger('click'); }); } }); [removed]