$.fn.datepicker.dates['cn'] = { //切換爲中文顯示
days: ["週日", "週一", "週二", "週三", "週四", "週五", "週六", "週日"],
daysShort: ["日", "一", "二", "三", "四", "五", "六", "七"],
daysMin: ["日", "一", "二", "三", "四", "五", "六", "七"],
months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
today: "今天",
clear: "清除"
};
$('.selectData').datepicker({
autoclose: true, //自動關閉
beforeShowDay: $.noop, //在顯示日期以前調用的函數
clearBtn: true, //顯示清除按鈕
forceParse: true, //是否強制轉換不符合格式的字符串
format: 'yyyy-mm', //日期格式
language: 'cn', //語言
minViewMode: 1, // 最小精度選擇
startView: 1, //開始顯示
WeekHighlighted:true, // 本週高亮
endDate:new Date()
});函數