常见问题: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.cnblogs.com/wuss/p/9712563.html