我想用jquery从php获取数据。我写了这段代码:
<?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);
},
});
但它不起作用。有什么问题吗?
谢谢