1
var url = '<?php echo base_url(); ?>index.php/home_event/view_cal';
$.ajax({
type: "POST",
url: url,
secureuri :false,
dataType: "json",
data: postData,
success: function (data,event_name,event_description,start_date,location)
{
$('.heading_bg').html(event_name);
$('.location_details').html(location);
$('.date_details').html(start_date);
$('.event_content').html(event_description);
}
});
}); return false;
});
在這段代碼中,成功的一部分並沒有取代我的值在form.i.e我的event_name不顯示在heading_bg div.pleas幫助。成功與ajax
太感謝你了......它的工作:) – user1635929