2013年6月30日
摘要: 最近做的项目需要一个日程插件,在网上找了一些插件觉的fullcalendar 比较好用,总结一下以备后用。效果图如下: 1 var calendar = null; 2 function ShowCalendar() { 3 if (calendar != null) { 4 return; 5 } 6 var date = new Date(); 7 var d = date.getDate(); 8 var m = date.getMonth(); 9 var y = date.getFullYear();10... 阅读全文
posted @ 2013-06-30 20:18 justconnor 阅读(717) 评论(0) 推荐(0) 编辑