我试图弄清楚当我在完整的日历派生中选择“月份”时如何运行脚本。
我该怎么办?单击它,其他一切都会发生,但我选择的脚本也会运行。
干得好:
$(document).ready(function() {
// ... you can have other things here ...
$('.fc-button-month > .fc-button-inner').live('click', function() {
alert('I am here ..');
});
});
无论您使用的是 select 还是 dayclick,您都应该能够在该回调中运行一个函数,然后使用 $.ajax 函数来运行您的 php 脚本(假设您使用的是 php,因为您没有指定)。这是一个简短的例子......
var calendar = $('#calendar').fullCalendar({
select: function(s, e, a) {
myfunction();
}
});
然后在日历变量之外......
function myfunction(){
$.ajax({
url: 'myscript.php',
data: {myvariable: myvariable},
type: 'post',
success: function(data){
alert(data);
}
});
}
我不明白为什么这不起作用