jQuery 日历插件 Clndr.js
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/kylestetz/CLNDR
软件介绍
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.'); } } } })