我正在用 jQuery 脚本编写一些内容,该脚本将从 php 文档中打印一个月:
var count = 0;
$(".nextMonth").click( function(event) {
event.preventDefault();
count++;
$("#result").load('index.php?month=' + count);
});
$(".prevMonth").click( function(event) {
event.preventDefault();
count--;
$("#result").load('index.php?month=' . count);
});
我可以毫无问题地获得 index.php?month=1,但是当我再次按下 .nextMonth 按钮时,它会失败。我不知道问题是什么,我将不胜感激!:)