jquery ajax请求php,但是却连php源代码都返回了,怎么回事啊????
发布网友
发布时间:2022-04-25 05:24
我来回答
共6个回答
热心网友
时间:2022-04-25 06:54
用了你的源码做测试,没发现问题,返回都正确,这是我测试的源码。
//ajax.test.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>ajax</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="zh-CN" />
<meta name="Keywords" content="" />
<meta name="Description" content="" />
<script type="text/javascript" src="jquery-1.6.2.min.js"></script>
</head>
<body>
<script>
$(document).ready(function(){
$.ajax({
type: "POST",
url: "test.php",
dataType: "html",
data: {"user":"nice","pass":"sj"},
success: function(data){
$("#test").html(data);
alert(data);
},
error:function(){
alert("F");
return false;
}
});
});
</script>
<div id="test"></div>
</body>
</html>
//test.php
<?php
$arr["name"]="sss";
$arr["di"]="kkk";
$j_arr=json_encode($arr);
echo $j_arr;
echo "sfdsdfsfdsfds";
?>
//返回
1.alert({"name":"sss","di":"kkk"}sfdsdfsfdsfds)
2.{"name":"sss","di":"kkk"}sfdsdfsfdsfds
热心网友
时间:2022-04-25 08:12
php页面,除了echo的代码,
其他的静态化代码都会被输出,比如
<p>1</p>
热心网友
时间:2022-04-25 09:46
$j_arr=json_encode($arr);这是返回json数据格式,去掉试一下
热心网友
时间:2022-04-25 11:38
给你一个例子
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();
热心网友
时间:2022-04-25 13:46
源码发来看看追问$.ajax({
type: "POST",
url: "test.php",
dataType: "html",
data: {"user":"nice","pass":"sj"},
success: function(data){
$("#test").html(data);
alert(data);
},
error:function(){
alert("F");
return false;
}
});
热心网友
时间:2022-04-25 16:10
PHP源码也返回了说明PHP页面没有执行 他当成HTML页面全部返回了 你检查下代码吧 你也没给出来。。。。。。。追问$.ajax({
type: "POST",
url: "test.php",
dataType: "html",
data: {"user":"nice","pass":"sj"},
success: function(data){
$("#test").html(data);
alert(data);
},
error:function(){
alert("F");
return false;
}
});
这是代码,整个源码全返回,