bootstrap datepicker日期插件汉化

xiaoxiao2021-02-28  124

bootstrap datepicker是一款不错的日期插件,而且在国际化方面也有不错的支持,当然也支持简体中文了,我们只需要引入简体中文js(bootstrap-datepicker.zh-CN.js),并在datepicker属性配置language为‘zh-CN’即可,示例如下:

         $(".form_datetime").datepicker({                 autoclose: true,                 todayHighlight: true,                 language:"zh-CN", --语言设置                 format:"yyyy-mm-dd"  --日期显示格式             });

参考文章:1.该插件文档:http://bootstrap-datepicker.readthedocs.io/en/latest/

        2.github网址:https://github.com/uxsolutions/bootstrap-datepicker

转载请注明原文地址: https://www.6miu.com/read-69049.html

最新回复(0)