🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 列表框 select2 参考文档: [http://select2.github.io/examples.html](http://select2.github.io/examples.html) ![](https://box.kancloud.cn/2016-06-29_57738490b50f9.png) ## 使用 ``` <div> <select class="js-example-basic-single form-control"> <option value="AL">后盾网</option> <option value="WY">快学网</option> </select> </div> <script> require(['select2'],function(){ $(".js-example-basic-single").select2(); }) </script> ```