微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

一个简单的php+ajax 例子

<!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>iframe tag test</title>  

<Meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  

<script type="text/javascript">  

 function showHint(str)  

{  

if (str=="")  

  {   

  alert("showHint()函数的参数不能为空!");  

  return  

  }  

xmlHttp=GetXmlHttpObject()  

if (xmlHttp==null)  

  {  

  alert ("您的浏览器不支持这个请求!")  

  return  

  }   

var url="test1.PHP"  

url=url+"?q="+str  

url=url+"&sid="+Math.random()  

xmlHttp.onreadystatechange=stateChanged   

xmlHttp.open("GET",url,true)  

xmlHttp.send(null)  

}   

  

  

function stateChanged()   

{   

if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")  

 {   

 var neirong=xmlHttp.responseText ;  

 alert(neirong);  

 }   

}  

  

  

function GetXmlHttpObject()  

{  

var xmlHttp=null;  

try  

 {  

 // Firefox,Opera 8.0+,Safari  

 xmlHttp=new XMLHttpRequest();  

 }  

catch (e)  

 {  

 // Internet Explorer  

 try  

  {  

  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");  

  }  

 catch (e)  

  {  

  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");  

  }  

 }  

return xmlHttp;  

}   

   

    </script>  

  

  

</head>  

<body >  

<input type="submit" name="button" id="button" value="提交"  onclick="showHint('ok');"/>  

</body>  

</html>

test1.PHP代码

<?PHP  

$q=$_GET["q"];  

if($q=="ok"){  

$response="888888";  

}else{  

$response="99999";  

    }  

echo $response;  

?>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐