用了你的源码做测试,没发现问题,返回都正确,这是我测试的源码。
//ajax.test.php
php页面,除了echo的代码,
其他的静态化代码都会被输出,比如
1
$j_arr=json_encode($arr);这是返回json数据格式,去掉试一下
给你一个例子
js==================================
$.ajax({
type: "post",
url: "xxx.php",
data: "id=" + id,
timeout: 1000,
error: function(){
alert("error");
},
success: function(msg){
alert(msg);
}
});
xx.php========================================
echo "1234";
exit();
源码发来看看