9-1
上課範例:birthday.php
03 | include_once "header.php" ; |
04 | include_once "up_file.php" ; |
05 | $xoopsOption [ 'template_main' ] = "contact_index_tpl.html" ; |
08 | $jquery =get_jquery(true); |
12 | <script src= 'class/fullcalendar/fullcalendar.js' type= 'text/javascript' ></script> |
13 | <link rel= 'stylesheet' type= 'text/css' href= 'class/fullcalendar/fullcalendar.css' > |
14 | <script src= 'class/fullcalendar/gcal.js' type= 'text/javascript' ></script> |
15 | <script type= 'text/javascript' > |
17 | $( '#calendar' ).fullCalendar({ |
18 | header: { left: 'today' , center: 'title' , right: ' prev,next' } , |
19 | buttonText:{today: '今天' ,prev: '上個月' ,next: '下個月' }, |
24 | monthNames: [ '一月' , '二月' , '三月' , '四月' , '五月' , '六月' , '七月' , '八月' , '九月' , '十月' , '十一月' , '十二月' ], |
25 | monthNamesShort: [ '1月' , '2月' , '3月' , '4月' , '5月' , '6月' , '7月' , '8月' , '9月' , '10月' , '11月' , '12月' ], |
26 | dayNames: [ '星期日' , '星期一' , '星期二' , '星期三' , '星期四' , '星期五' , '星期六' ], |
27 | dayNamesShort: [ '日' , '一' , '二' , '三' , '四' , '五' , '六' ], |
29 | events: 'get_events.php' |
33 | <div id= 'calendar' ></div> |