checkusername.html:
实现代码如下:
<!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>无标题文档</title>
</head>
<script language=”javascript”>
var xmlHttp;
function createXMLHttpRequest(){
if(window.ActiveXObject){
xmlHttp = new ActiveXObject(“microsoft.XMLHTTP”);
}
else if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}
}
function send_request(url,data){
createXMLHttpRequest();
xmlHttp.open(“POST”,url,true);
xmlHttp.onreadystatechange = check_lll;
xmlHttp.setRequestHeader(“CONTENT-TYPE”, “application/x-www-form-urlencoded”);
xmlHttp.send(“username=” + data);
}
function check_lll(){
if(xmlHttp.readyState == 4){
if(xmlHttp.status == 200){
alert(xmlHttp.responseText);
}
}
}
function check_username(){
var f = document.form1;
var username = f.username.value;
if(username == “”){
alert(“NULL”);
return false;
}
else{
send_request(“check_it.php”,username);
}
}
</script>
<body>
<form id=”form1″ name=”form1″ method=”post” action=””>
<p> </p><p>
姓名: <input type=”text” name=”username” />
</p>
<input type=”button” value=”check it” onclick=”check_username()” />
<p> </p>
<p> </p>
</form>
</body>
</html>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″ />
<title>无标题文档</title>
</head>
<script language=”javascript”>
var xmlHttp;
function createXMLHttpRequest(){
if(window.ActiveXObject){
xmlHttp = new ActiveXObject(“microsoft.XMLHTTP”);
}
else if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}
}
function send_request(url,data){
createXMLHttpRequest();
xmlHttp.open(“POST”,url,true);
xmlHttp.onreadystatechange = check_lll;
xmlHttp.setRequestHeader(“CONTENT-TYPE”, “application/x-www-form-urlencoded”);
xmlHttp.send(“username=” + data);
}
function check_lll(){
if(xmlHttp.readyState == 4){
if(xmlHttp.status == 200){
alert(xmlHttp.responseText);
}
}
}
function check_username(){
var f = document.form1;
var username = f.username.value;
if(username == “”){
alert(“NULL”);
return false;
}
else{
send_request(“check_it.php”,username);
}
}
</script>
<body>
<form id=”form1″ name=”form1″ method=”post” action=””>
<p> </p><p>
姓名: <input type=”text” name=”username” />
</p>
<input type=”button” value=”check it” onclick=”check_username()” />
<p> </p>
<p> </p>
</form>
</body>
</html>
check_it.php:
实现代码如下:
<?php
$username = $_POST[“username”];
$conn = mysql_connect(“localhost:3306″,”root”,”123″);
mysql_select_db(“my”,$conn);
$sql = “select * from username where username = ‘$username'”;
$result = mysql_query($sql,$conn);
$num = mysql_fetch_array($result);
if($num > 0){
printf(“can’t use”);
}
else{
printf(“It can use”);
}
$username = $_POST[“username”];
$conn = mysql_connect(“localhost:3306″,”root”,”123″);
mysql_select_db(“my”,$conn);
$sql = “select * from username where username = ‘$username'”;
$result = mysql_query($sql,$conn);
$num = mysql_fetch_array($result);
if($num > 0){
printf(“can’t use”);
}
else{
printf(“It can use”);
}
?>
以上就是【AJAX 用户唯一性验证实现代码】的全部内容了,欢迎留言评论进行交流!
© 版权声明
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!邮箱:cxysz1@tom.com
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 如遇到加密压缩包,请使用WINRAR解压,如遇到无法解压的请联系管理员!
8. 精力有限,不少源码未能详细测试(解密),不能分辨部分源码是病毒还是误报,所以没有进行任何修改,大家使用前请进行甄别
丞旭猿论坛
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 如遇到加密压缩包,请使用WINRAR解压,如遇到无法解压的请联系管理员!
8. 精力有限,不少源码未能详细测试(解密),不能分辨部分源码是病毒还是误报,所以没有进行任何修改,大家使用前请进行甄别
丞旭猿论坛
THE END
暂无评论内容