欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP+Ajax 用户名检测详解_PHP教程

程序员文章站 2022-05-09 19:07:21
...
本例一共需3个文件
PHP+Ajax 用户名检测详解_PHP教程
Ajax.js
var xmlHttp;
//实例化过程
function S_xmlhttprequest(){
if(window.ActiveXObject){
xmlHttp=new ActiveXObject('Microsoft.XMLHTTP');
}else if(window.XMLHttpRequest){
xmlHttp=new XMLHttpRequest();
}
}
function funphp100(name){
//获取form内容
//http://www.ruoshuiyx.com 沈阳网站建设
var f=document.myform.user.value;
//引用实例化过程
S_xmlhttprequest();
//打开请求
xmlHttp.open("GET","index.php?id="+f,true);
//准备就绪执行
xmlHttp.onreadystatechange=byphp;
xmlHttp.send(null);
}
function byphp() {
if(xmlHttp.readyState== 1) {
document.getElementById('php100').innerHTML = "PHP+Ajax 用户名检测详解_PHP教程";
}
if(xmlHttp.readyState== 4 ){
if(xmlHttp.status == 200) {
var byphp100 = xmlHttp.responseText;
document.getElementById('php100').innerHTML = byphp100;
}
}
}
For.php
用户名//http://www.ruoshuiyx.com 沈阳网站建设: