🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 列表框选择日期 ![](https://box.kancloud.cn/c9955a7943ce60422ee17d4133187f1e_188x224.png) ``` <select name="birthyear"></select> <select name="birthmonth"></select> <select name="birthday"></select> <script> require(['hdjs'], function (hdjs) { hdjs.dateselect({ year: document.querySelector('[name="birthyear"]'), month: document.querySelector('[name="birthmonth"]'), day: document.querySelector('[name="birthday"]'), }, { year: "{{$user['birthyear']}}", month: "{{$user['birthmonth']}}", day: "{{$user['birthday']}}" }); }) </script> ```