2012-09-26 60 views
0

我已經做了這個腳本,從calendar.php得到的月份和年份,我想當我點擊上個月的鏈接獲得前一個月,但也是當月數達到1使得年 - 1.我該怎麼做這樣的事情?jQuery上個月從php

<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> 
+1

除非你是在處理與瑪雅日曆,有很多,以防止JS庫你爲這樣一個簡單的任務進行服務器調用。 – moonwave99

+0

你能給我一個圖書館的例子嗎? – Netra

回答

1

我認爲你應該使用jQuery.ajax

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

爲了得到yerstaday可以使用

var d = new Date(/* data that you get from calendar.php*/); 
d.setDate(d.getDate() - 1);