reg_new.js
来自「这是matlab的一个小程序」· JavaScript 代码 · 共 108 行
JS
108 行
<!--
$(document).ready(function(){
//checkSubmit
$('#regUser').submit(function () {
if($('#txtUsername').val()==""){
$('#txtUsername').focus();
alert("用户名不能为空!");
return false;
}
if($('#txtPassword').val()=="")
{
$('#txtPassword').focus();
alert("登陆密码不能为空!");
return false;
}
if($('#userpwdok').val()!=$('#txtPassword').val())
{
$('#userpwdok').focus();
alert("两次密码不一致!");
return false;
}
if($('#uname').val()=="")
{
$('#uname').focus();
alert("用户昵称不能为空!");
return false;
}
if($('#vdcode').val()=="")
{
$('#vdcode').focus();
alert("验证码不能为空!");
return false;
}
})
//AJAX changChickValue
$("#txtUsername").change( function() {
$.ajax({type: reMethod,url: "index_do.php",
data: "dopost=checkuser&fmdo=user&cktype=1&uid="+$("#txtUsername").val(),
dataType: 'html',
success: function(result){$("#_userid").html(result);}});
});
$("#uname").change( function() {
$.ajax({type: reMethod,url: "index_do.php",
data: "dopost=checkuser&fmdo=user&cktype=0&uid="+$("#uname").val(),
dataType: 'html',
success: function(result){$("#_uname").html(result);}});
});
$("#email").change( function() {
var sEmail = /\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/;
if(!sEmail.exec($("#email").val()))
{
$('#_email').html("<font color='red'><b>×Email格式不正确</b></font>");
$('#email').focus();
}else{
$.ajax({type: reMethod,url: "index_do.php",
data: "dopost=checkmail&fmdo=user&email="+$("#email").val(),
dataType: 'html',
success: function(result){$("#_email").html(result);}});
}
});
$('#txtPassword').change( function(){
if($('#txtPassword').val().length < pwdmin)
{
$('#_userpwdok').html("<font color='red'><b>×密码不能小于"+pwdmin+"位</b></font>");
}
else if($('#userpwdok').val()!=$('txtPassword').val())
{
$('#_userpwdok').html("<font color='red'><b>×两次输入密码不一致</b></font>");
}
else if($('#userpwdok').val().length < pwdmin)
{
$('#_userpwdok').html("<font color='red'><b>×密码不能小于"+pwdmin+"位</b></font>");
}
else
{
$('#_userpwdok').html("<font color='#4E7504'><b>√填写正确</b></font>");
}
});
$('#userpwdok').change( function(){
if($('#txtPassword').val().length < pwdmin)
{
$('#_userpwdok').html("<font color='red'><b>×密码不能小于"+pwdmin+"位</b></font>");
}
else if($('#userpwdok').val()=='')
{
$('#_userpwdok').html("<b>请填写确认密码</b>");
}
else if($('#userpwdok').val()!=$('#txtPassword').val())
{
$('#_userpwdok').html("<font color='red'><b>×两次输入密码不一致</b></font>");
}
else
{
$('#_userpwdok').html("<font color='#4E7504'><b>√填写正确</b></font>");
}
});
$("a[href*='#vdcode'],#vdimgck").bind("click", function(){
$("#vdimgck").attr("src","../include/vdimgck.php?tag="+Math.random());
return false;
});
});
-->
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?