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

利用ajax实现简单的注册验证局部刷新实例

程序员文章站 2023-01-28 20:15:09
1,ajax(asynchronouse javascript and xml)异步的 javascrip 和xml 2,(包含了7种技术:javascript xml x...
1,ajax(asynchronouse javascript and xml)异步的 javascrip 和xml
2,(包含了7种技术:javascript xml xstl dom xhtml css xmlhttprequest)
3,是一种与服务器语言无关的技术,可以用在(php/jsp/asp.net)
4,ajax的工作原理: 创建一个ajax引擎->发送数据给服务器--》通过回调函数接收数据---》将数据赋给指定的页面

下面是注册验证案例register。php是注册页面。registerprocess.php用于接收数据并返回数据

register.php
复制代码 代码如下:

<!doctype html public "-//w3c//dtd html 4.01 transitional//en">
<html>
<head>
<title>用户注册</title>
<!-- 告诉浏览器不要缓存 -->
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<script type="text/javascript">
<!--
function sendrequest(){
//创建一个ajax引擎
var xmlhttprequest;
//不同浏览器获取xmlrequest对象方法不一样
if(window.activexobject){
xmlhttprequest = new activexobject("mmmmmictofrt");
}else{
xmlhttprequest = new xmlhttprequest();
}
return xmlhttprequest;
}
var myxmlhttprequest
function checkname(){
myxmlhttprequest = sendrequest();
if(myxmlhttprequest){
//window.alert("创建成功");
//第一个参数表示请求方式get.post。第二个参数指定url,对哪个页面发送ajax请求
//用get方式提交的数据如果没有发生变化的话浏览器将会从缓存中直接提取
var url = "/ajax_yhyz/registerprocess.php? username=getvalue('username').value";
//1,用这样就可以不从缓存提取了
//var url = "/ajax_yhyz/registerprocess.php? mytime='new date()' & username=getvalue('username').value";
//2,<meta http-equiv="pragma" content="no-cache">告诉浏览器不要缓存
//window.alert(url); 用于测试url是否成功
//第三个参数ture 表示异步机制
myxmlhttprequest.open("get",url,true);
//指定回调函数,chul是函数名,表示如果状态发生变化就调用该函数,有四个状态
myxmlhttprequest.onreadystatechange = chuli;
//发送请求,如果是get请求则填写null即可
//额如果是post请求,则填写实际的数据
myxmlhttprequest.send(null);
}
}
function chuli(){
//window.alert("处理函数被回调");
if(myxmlhttprequest.readystate == 4){
//window.alert("服务器返回"+myxmlhttprequest.responsetext);
getvalue("myres").value = myxmlhttprequest.responsetext;
}
}
function getvalue(id){
//return document.getelementbyid(id).value; 这样做的话没办法完成局部刷新
return document.getelementbyid(id);
}
-->

</script>
</head>

<body>
<form action="???" method="post">
用户名字:<input type="text" name="username1" id="username" ><input type="button" onclick="checkname()" value="验证用户名">
<input type="text" id="myres" />
<br/>
用户密码:<input type="password" name="password"><br>
电子邮件:<input type="text" name="email"><br/>
<input type="submit" value="用户注册">
</form>
<form action="???" method="post">
用户名字:<input type="text" name="username2" >

<br/>
用户密码:<input type="password" name="password"><br>
电子邮件:<input type="text" name="email"><br/>
<input type="submit" value="用户注册">
</form>
</body>
</html>

regiseterprocess.php
复制代码 代码如下:

<?php
$username=$_request['username'];
if($username=="shunping"){
echo "err";
}else{
echo "ok";
}
?>