我正在尝试弄清楚当我在完整日历衍生物中选择"月"时如何运行脚本。
我该怎么做?单击它,其他一切都会发生,但我选择的脚本也会运行。
无论你使用的是 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);
}
});
}
我不明白为什么这不起作用
你来了:
$(document).ready(function() {
// ... you can have other things here ...
$('.fc-button-month > .fc-button-inner').live('click', function() {
alert('I am here ..');
});
});