企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 列表框日期选择 ![](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> ```