日期:2014-05-16 浏览次数:20311 次
$(function() {
var date_type = "";
get_li();
function get_li() {
$.ajax({
type : "post",
dataType : "html",
url : "member/content_li.php",
data : {
q_id : $("#qid").html(),
date_type : date_type
},
success : function(res_year) {
$("#date_li").html(res_year);
var year = ""
$(".year").live("click", function() {
year = $(this).html().substr(0,4);
$.ajax({
type : "post",
dataType : "html",
url : "member/content_li.php",
data : {
q_id : $("#qid").html(),
date_type : "year",
year : year
},
success : function(res_month) {