jquery json 判断用户是否已注册
Posted 小胖不胖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery json 判断用户是否已注册相关的知识,希望对你有一定的参考价值。
check_user.php
<?php $link=mysqli_connect(‘localhost‘,‘root‘,‘root‘,‘test‘);//连接数据库 if(mysqli_connect_errno()){ echo mysqli_connect_error(); } $query="select * from username where username=‘{$_GET[‘username‘]}‘"; $result=mysqli_query($link,$query); $data=mysqli_fetch_assoc($result); echo $data=json_encode($data); ?>
index.php
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>Document</title> <script type="text/javascript" src="js/jquery.min.js"></script> <script type="text/javascript" src="js/index.js"></script> </head> <body> <input type="text" id="namevalue"><span class="error"></span> <br> <button id="btn">Send</button> 结果:<span id="result"></span> </body> </html>
index.js
$(function(){
$("#namevalue").blur(function(){
$.get("/jquery/check_user.php",{
username:$("#namevalue").val()
},function(data,status){
if(data!=null){
$("#result").text("");
$(".error").text("用户名已注册");
}else{
$(".error").text("");
$("#result").text($("#namevalue").val());
}
},"json");
});
});
以上是关于jquery json 判断用户是否已注册的主要内容,如果未能解决你的问题,请参考以下文章
checkUserExistWhenRegister 注册时判断用户是否已存在