🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 时间 clockpicker 参考文档: [http://weareoutman.github.io/clockpicker/](http://weareoutman.github.io/clockpicker/) ![](https://box.kancloud.cn/2016-06-29_577384920020d.png) ##使用 ``` <div class="input-group clockpicker" data-autoclose="true"> <input type="text" class="form-control" value="09:30"> <span class="input-group-addon"> <span class="glyphicon glyphicon-time"></span> </span> </div> <script type="text/javascript"> require(['util'], function (hd) { hd.clockpicker({ element:'.clockpicker',//点击元素 options:{}//参考插件官网 }); }); </script> ```