2012-10-19 75 views
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

回答

0

success函數的第一個參數將包含所有數據。嘗試是這樣的:

success: function(data) { 
    $('.heading_bg').html(data.event_name); 
    /* ... */ 
} 

或者你也可以檢查數據:

success: function(data) { 
    console.dir(data); 
} 

檢查成功參數這裏http://api.jquery.com/jQuery.ajax/

+0

太感謝你了......它的工作:) – user1635929