多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# 列表框日期选择 ![](https://box.kancloud.cn/2016-06-29_5773848fb41cc.png) ``` <select name="birthyear" class="form-control"></select> <select name="birthmonth" class="form-control"></select> <select name="birthday" class="form-control"></select> <script> util.date_picker( { year: document.querySelector('[name="birthyear"]'),//年select表单 month: document.querySelector('[name="birthmonth"]'),//月表单 day: document.querySelector('[name="birthday"]'),//日表单 }, { year: 1998,//初始年 month:7,//初始月 day:20,//初始日 } ); </script> ```