php返回给ajax是一整段代码,不是echo内容
alert提示框出来的是:<?php$a=$_GET["id"];echo$a;?>================js代码====================var...
alert提示框出来的是:
<?php
$a=$_GET["id"];
echo $a;
?>
================js代码====================
var xmlHttp;
function xmlHttpRequest(){
if(window.ActiveXObject){
xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
} else if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}
}
function user_name_onblur(){
xmlHttpRequest();
var url="registered.php?id="+document.forms[0].user_name.value;
xmlHttp.open("get",url,true);
xmlHttp.onreadystatechange = check_user_name;
xmlHttp.send(null);
}
function check_user_name(){
if(xmlHttp.readyState == 4){
alert(xmlHttp.responseText);
}
} 展开
<?php
$a=$_GET["id"];
echo $a;
?>
================js代码====================
var xmlHttp;
function xmlHttpRequest(){
if(window.ActiveXObject){
xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
} else if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}
}
function user_name_onblur(){
xmlHttpRequest();
var url="registered.php?id="+document.forms[0].user_name.value;
xmlHttp.open("get",url,true);
xmlHttp.onreadystatechange = check_user_name;
xmlHttp.send(null);
}
function check_user_name(){
if(xmlHttp.readyState == 4){
alert(xmlHttp.responseText);
}
} 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询