popSelect
是一个jQuery
界面插件。
popSelect
官网:http://jquer.in/popSelect
通过bower下载:
bower install --save popSelect
<link href="/bower_components/popSelect/dist/jquery.popSelect.min.css" rel="stylesheet">
<script src="/bower_components/jquery/jquery.min.js"></script>
<script src="/bower_components/popSelect/dist/jquery.popSelect.min.js"></script>
html
代码:
<select id="select" multiple>
<option value="game-of-thrones">Game Of Thrones</option>
<option value="prison-break">Prison Break</option>
<option value="lost">Lost</option>
<option value="sherlock-holmes" selected="selected">Sherlock Holmes</option>
<option value="true-detectives" selected="selected">True Detectives</option>
</select>
js
代码:
$('#example2').popSelect({
showTitle: false,
placeholderText: 'Click to Add More',
position: 'bottom',
maxAllowed: 3
});