bootstrap-datepicker language 设置中文语言

bootstrap-datepicker自带了各种语言包,可以通过language属性设置语言,比如中文。

language属性

//设置语言
var ops = {
     language: 'zh-CN', //语言******************
     autoclose: true,  
     clearBtn: true, 
     format: "yyyy-mm-dd" 
 }; 
$("#itxst").datepicker(ops);

自定义语言包

! function(a) {
	a.fn.datepicker.dates["zh-diy"] = {
		days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"],
		daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六"],
		daysMin: ["日", "一", "二", "三", "四", "五", "六"],
		months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
		monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
		today: "今天",
		monthsTitle: "选择月份",
		clear: "清除",
		format: "yyyy-mm-dd",
		titleFormat: "yyyy年mm月",
		weekStart: 1
	}
}(jQuery);

//设置语言
var ops = {
     language: 'zh-diy', //语言******************
     autoclose: true,  
     clearBtn: true, 
     format: "yyyy-mm-dd" 
 }; 
$("#itxst").datepicker(ops);

在线试一试