0

我已经制作了这个脚本,它从 calendar.php 获取月份和年份,我希望当我单击上个月的链接以获取上个月时,以及当月份数达到 1 时使年份 - 1。我该怎么做像那样?

<html>
<head></head>


<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"    type="text/javascript"></script>
<script>
$(function() {
get_data();
});

function get_data(a, b) {

$.get('calendar.php', { 
    month: a, year: b
    }, 

    function(response) {
    $el = $('<div></div>').attr('class', 'data').html(response);
    $('#datas').prepend($el);
    height = $el.height()+'px';
    $el.css({'opacity': 0, 'display': 'block', 'height': '0px'}).animate({height: height }, 500, function() {
            $(this).animate({opacity: 1}, 500);
    })
});
}
   </script>
<style>
#datas {
overflow: hidden;
}
.data {
display: none;
}
</style>
<body>
 <a href="#" OnClick="get_data(9, 2012);" > Previous month</a>
<div id="datas">
</div>
</body>
</html>
4

1 回答 1

1

我认为你应该使用jQuery.ajax

$.ajax({
    url: 'calendar.php',
    success: function(data) {
        // Parse your data and do all neccessery refreshing
    }
});

为了得到昨天,你可以使用

var d = new Date(/* data that you get from calendar.php*/);
d.setDate(d.getDate() - 1);
于 2012-09-26T11:07:05.187 回答