1 Star 0 Fork 0

ccccye74/sport_mall_web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
checkusername.html 1.78 KB
一键复制 编辑 原始数据 按行查看 历史
ccccye74 提交于 2019-04-08 21:22 . 增加admin后端页面和增加js等
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>找回密码</title>
<link rel="stylesheet" href="css/login.css" />
<link rel="stylesheet" href="css/ali/font_508934_kve4so1x2xs10pb9.css" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<script src="js/jquery.min.js"></script>
<script src="js/login.js"></script>
<script src="js/register.js"></script>
<script>
$server = 'http://localhost:8080/';
function checkUserName(){
$username = $('#ipUserName').val();
$.ajax({
url: $server + 'user/check_user_valid.do',
type: 'POST',
datatype: 'json',
data: {username: $username},
corssDomain: true,
xhrFields:{
withCredentials: true // 携带跨域cookie
},
success: function(result){
console.log(result);
if (result.code == 200){
window.location.href= encodeURI('forgetPassword.html?username='+$username);
}else{
alert(result.msg);
}
},
error: function(XMLHttpRequest, textStatus, errorThrown){
alert(textStatus);
}
});
}
</script>
</head>
<body>
<div class="top">
<div class="top_logo">
<img src="img/login_logo.jpg" />
</div>
<div class="top_line"></div>
</div>
<div class="main0">
<div class="main">
<div class="input-group" style="width: 300px; margin: 0 auto;">
<span class="input-group-addon">用户名</span>
<input id="ipUserName" type="text" class="form-control"/>
<span class="input-group-btn">
<button class="btn btn-default" type="button" onclick="checkUserName()">校验</button>
</span>
</div>
</div>
</div>
<div class="footer">Copyright &copy 2019 Bowen University . 桂ICP备888888888号</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/ccccye74/sport_mall_web.git
[email protected]:ccccye74/sport_mall_web.git
ccccye74
sport_mall_web
sport_mall_web
master

搜索帮助