สอบถามใครเคยใช้ fullcalendar.js หน่อยครับ อยากได้วิธีหา "เดือน" ที่กำลังคลิก ปฏิทิน อยู่อะครับ เพื่อส่งค่าไปยัง eventSource มีตัวอย่างด้านใน
Code (PHP)
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<link href='fullcalendar-2.3.1/fullcalendar.css' rel='stylesheet' />
<link href='fullcalendar-2.3.1/fullcalendar.print.css' rel='stylesheet' media='print' />
<script src='fullcalendar-2.3.1/lib/moment.min.js'></script>
<script src='fullcalendar-2.3.1/lib/jquery.min.js'></script>
<script src='fullcalendar-2.3.1/fullcalendar.min.js'></script>
<script type="text/javascript">
$(document).ready(function() {
var calendar = $('#calendar').fullCalendar({
disableDragging: true,
header: {
left: ' today,prevYear,nextYear',
center: 'title',
right: 'prev,next,month'
},
defaultDate: '<?php echo $default_date;?>',
eventSources: ['getEvents.php?id=<?php echo $_REQUEST["hotel_id"];?>','home.php'],
eventClick: function(event) {
// opens events in a popup window
window.open(event.url, 'gcalevent', 'width=500,height=1050,toolbar=0,menubar=0,location=0,status=0,scrollbars=0,resizable=0,left=280,top=180');
return false;
},
loading: function(bool) {
$('#loading').toggle(bool);
}
});
});
</script>
<style>
body {
margin: 40px 10px;
padding: 0;
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
font-size: 14px;
}
#calendar {
max-width: 1150px;
margin: 0 auto;
}
#loading {
display: none;
position: absolute;
top: 10px;
right: 10px;
}
</style>
</head>
<body>
จาก Code ด้านบน ผมต้องการอยากรู้ว่า ตัวแปรไหนที่มันส่งในขณะที่เราเลือก "เดือน" อะไรอยู่อะครับ แล้วผมจะส่งเดือนเข้าไปยัง eventSource ครับTag : PHP, Ajax
ประวัติการแก้ไข 2017-01-19 15:44:57 2017-01-19 15:45:43
Date :
2017-01-19 09:05:08
By :
nut_ch31
View :
1111
Reply :
4
Code (JavaScript)
function getMonth(){
var date = $("#calendar").fullCalendar('getDate');
var month_int = date.getMonth();
//you now have the visible month as an integer from 0-11
}
Date :
2017-01-19 13:55:08
By :
mr.win
ผมต้องการเอาค่า เดือนอ่ะคัรบไปใส่ใน eventSources อ่ะคับ
Code (PHP)
eventSources: ['getEvents.php?id=<?php echo $_REQUEST["hotel_id"];?>','home.php'],
ประวัติการแก้ไข 2017-01-19 15:39:28
Date :
2017-01-19 15:32:06
By :
nut_ch31
Code (PHP)
<script type="text/javascript">
$(document).ready(function() {
var Month = getMonth();
alert(Month);
var calendar = $('#calendar').fullCalendar({
disableDragging: true,
header: {
left: ' today,prevYear,nextYear',
center: 'title',
right: 'prev,next,month'
},
defaultDate: '<?php echo $default_date;?>',
eventSources: ['getEvents.php?id=<?php echo $_REQUEST["hotel_id"];?>','home.php'],
eventClick: function(event) {
// opens events in a popup window
window.open(event.url, 'gcalevent', 'width=500,height=1050,toolbar=0,menubar=0,location=0,status=0,scrollbars=0,resizable=0,left=280,top=180');
return false;
},
loading: function(bool) {
$('#loading').toggle(bool);
}
});
});
function getMonth(){
var date = $("#calendar").fullCalendar('getDate');
var month_int = date.getMonth();
return month_int;
//you now have the visible month as an integer from 0-11
}
</script>
เอา getMonth ใส่เข้าไปแล้ว พอ alert แล้วมันตายอ่ะครับ ไม่รู้จะแทรกยังไง
Date :
2017-01-19 15:34:02
By :
nut_ch31
Date :
2017-01-24 11:43:46
By :
nut_ch31
Load balance : Server 04