我想從PHP獲取數據與jquery.I寫了這個代碼:JSON和jQuery AJAX
<?php
$return=array('content'=>1,'id'=>2,'priority'=>3);
echo json_encode($return);
?>
jQuery中
:
$.ajax({
type:'post',
url:'next_prev.php',
data:{act:act,id:id,priority:priority},
dataType: 'json',
cache: false,
success:function(data){
var obj=jQuery.parseJSON(data)
$('#content').html(obj.content);
$('#priority').html(obj.priority);
$('#id').html(obj.id);
},
});
但它並不work.whats錯了嗎?
感謝
在成功回調
我認爲你必須使用var成功函數就像 - obj [content] – sourcecode
你看到了什麼錯誤? – allergic