我需要使用該ID加載一個div,這是沒有發生的,任何人都可以解決我的問題嗎? :ajax加載問題
$.ajax({
type: "POST",
url: "<?php echo CONTENT_PATH?>experts/experts.php",
data: "#health", // Problem is over here
success: function(msg){
if(parseInt(msg)!=0)
{
$('#cnt_middle').html(msg);
$('#loading').css('display','none');
//$('.content_bottom').hide();
}
},
error: function(){
$.Zebra_Dialog('<?php echo LOAD_ERROR; ?>');
document.clear();
$('#loading').css('display','none');
}
});
謝謝。
所以要「數據」屬性有格的內容? – Nakul