企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 时间选择 参考文档: [http://weareoutman.github.io/clockpicker/](http://weareoutman.github.io/clockpicker/) [TOC] ![](https://box.kancloud.cn/e242105f82e509e2546b71a251ec9b63_313x358.png) ## 使用 ``` <div class="input-group clockpicker"> <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(['hdjs'], function (hdjs) { hdjs.clockpicker('.clockpicker',{ afterDone: function() { console.log("after hide times is "+$('.clockpicker input').val()); } }); }); </script> ```