$.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()
});