Clndr.jsjQuery 日历插件
Clndr.js 是一款使用 HTML 样本的 jQuery 日历插件。
示例代码:
$('#calendar').clndr({ constraints: { startDate: '2015-05-06', endDate: '2015-07-16' }, clickEvents: { click: function(target) { if( !$(target.element).hasClass('inactive') ) { console.log('You picked a valid date!'); } else { console.log('That date is outside of the range.'); } } } })
评论