您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“如何使用jQuery實現可輸入多選下拉組合框”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“如何使用jQuery實現可輸入多選下拉組合框”這篇文章吧。
基于這種原因,于是私下用jquery寫了一個比較簡單的多選下拉可填寫組合框。
container{ margin: 20px auto; padding:0 15px; width: 50%; height:300px; box-sizing: border-box; } .text-container{ display: inline-block; float:left; width: 15%; height: 32px; line-height: 32px; box-sizing: border-box; } .selectContainer{ width: 70%; height:200px; float:left; position: relative; padding:0; margin:0; box-sizing: border-box; } .selectedContent{ width:85%; height: 25px; float:left; } .dropDown-toggle{ width:14%; height:31px; line-height: 31px; text-align: center; border: 1px solid silver; border-left:none; float:left; padding:0; margin:0; box-sizing: border-box; cursor: pointer; } .dropDown-menu{ margin:0; padding:0 15px 10px; width:100%; border:1px solid silver; border-top: none; box-sizing: border-box; list-style: none; position: absolute; top:31px; right:0; } .items{ margin-top:8px; padding: 2px; cursor: pointer; } .items:hover{ background: #ddd; } .isSelectedText{ display: inline-block; width:90%; } .dsn{ display: none; }
<div class="container"> <span class="text-container">最愛的水果</span> <div class="multipleSelect selectContainer"> <input type="text" class="selectedContent"> <div class="dropDown-toggle">選擇</div> <ul class="dropDown-menu dsn"> <li class="items"> <span class="isSelectedText">蘋果</span> <span class="isSelected"><input type="checkbox"></span> </li> <li class="items"> <span class="isSelectedText">梨</span> <span class="isSelected"><input type="checkbox"></span> </li> <li class="items"> <span class="isSelectedText">橘子</span> <span class="isSelected"><input type="checkbox"></span> </li> <li > <button type="button" class="confirmSelect">確定</button> </li> </ul> </div> </div>
$('.isSelected input[type=checkbox]').on('click', function(){ var selectedItems = $(this).parents('.dropDown-menu').prevAll('.selectedContent').val().split(' '); var thisItem = $(this).parent().prev().text(); var isExisted = 0; var isChecked = $(this).is(':checked'); if(isChecked){ selectedItems.map(function(item, index){ if(item === thisItem){ isExisted++ } }); if(!isExisted){ selectedItems.push(thisItem) } } else{ selectedItems.map(function(item, index){ if(item === thisItem){ selectedItems.splice(index, 1); } }); } $(this).parents('.dropDown-menu').prevAll('.selectedContent').val(selectedItems.join(' ')); }) $('.confirmSelect').on('click', function(){ $(this).parents('.dropDown-menu').addClass('dsn'); }) $('.dropDown-toggle').on('click', function(){ $(this).next().toggleClass('dsn') });
由于本組件中使用了數組的map方法,可能此方法在ie中不能兼容。由于我電腦ie無法打開,用360瀏覽器測試后同樣可是正常使用。
以上是“如何使用jQuery實現可輸入多選下拉組合框”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。