在网站注册用户时使用,主要为了无刷新异步验证用户输入的用户名或者Email是否已注册,这功能大家肯定见过,大多数网站都有的,我一直对这个功能很感兴趣,所以这几天研究了下 jQuery + Ajax,整了一个功能不算完善,但足以应付普通使用的代码,更牛的功能大家自己去发掘.
文件说明:
reg.php 为注册页面
check_user.php 为用户验证页面 (GET,POST方式任选)
jquery-1.7.1.js 为jQuery文件,下载地址:http://code.jquery.com/jquery-1.7.1.js (右键另存为即可)
代码示例
reg.php 注册页面(内含2种方式,请任选一种),代码如下:
- <!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>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <title>PHP+Ajax 异步通讯注册验证</title>
- <script type="text/javascript" src="jquery-1.7.1.js"></script> <!--千万别忘记引用jQuery文件,否则无法执行-->
- <script type="text/javascript">
- $(function(){
-
- $("#user").blur(function(){
-
- $.get("check_user.php?user="+$("#user").val(),null,function(data)
- {
- $("#chk").html(data);
- });
-
- })
-
- $("#user").blur(function(){
-
- $.ajax({
-
- url:"check_user.php",
- type:"GET",
- data:"user="+$("#user").val(),
- success: function(data)
- {
- $("#chk").html(data);
- }
-
- });
- })
-
- })
- </script>
- </head>
- <body>
- <form id="reg" action="" method="post">
- 用户名:<input id="user" type="text" /> <span id="chk"></span>
- </form>
- </body>
- </html>
check_user.php 异步通信页面,代码如下:
- <?php
- header("Content-type:text/html;charset=gb2312");
-
-
- if($_GET['user'])
- {
- $user=$_GET['user'];
-
- if($user=="admin")
- echo "<font color=red>用户名已被注册!</font>";
- else
- echo "<font color=red>用户名可以使用</font>";
- }else{}
-
-
- if($_POST['user'])
- {
- $user=$_POST['user'];
-
- if($user=="admin")
- echo "<font color=red>用户名已被注册!</font>";
- else
- echo "<font color=red>用户名可以使用</font>";
-
- }else{}
-
- ?>
上面的2种方式分别又存在 post 和 get 两种方式,所以可以说有4种方式选择,应该可以满足普通应用了.
另外关于Ajax 内其他参数例如:请求数据类型,ajax开始操作等等事件,请参考ajax手册,这里不做阐述,较为复杂推荐使用第一种方式. |