AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# 时间 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> ```