我确定我在这里做了一些愚蠢的事情,但我不知道是什么。我的Jquery Post函数工作正常,调用我想要的文件,但之后没有其他工作。
http://hq.terravant.com/calendar/calendar.php
谢谢,
// creates the calendar
$.post("date_table.inc.php",
{
name: 'left',
},
function(data){
$('#main').html(data);
});
// the left and right arrow functions that increment and decrement the months
$( "#leftArrow" ).click(function() {
alert('left clicked');
});
$( "#rightArrow" ).click(function() {
alert('right clicked');
});