$(function () {
//JS 加载
调用
$('#
Box').calendar({
width : 200,height : 200,fit : false,border : false,firstDay : 0,weeks : ['S','M','T','W','F','S'],months : ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'],year : 2016,month : 6,current : new Date(2016,12,17),});
});
$(function () {
//JS 加载
调用
$('#
Box').calendar({
width : 200,onSelect : function (date) {
alert(date.getFullYear() + ":" + (date.getMonth() + 1) + ":"
+ date.getDate());
},onChange : function (newDate,oldDate) {
alert(newDate + '|' + oldDate);
},});
});
属性对象
console.log($('#
Box').calendar('options'));
//调整日历大小
$('#
Box').calendar('resize');
//移动到指定日期
$('#
Box').calendar('moveTo',new Date(2015,1,1));
//可以使用$.fn.calendar.defaults 重写默认值对象。