① js注册页代码怎么写

要配合后端语言

② 游戏注册页面js代码怎么写

//邮箱,用户名,密码正则已经验证完成的情况下
varbtn=$("#targetBtn");
btn.on("click",function(){
varusername=$("#username").val(),
password=$("#password").val(),
email=$("#email").val;
if(username==""){
alert("请填写用户名");
returnfalse;
}
//...此处省略if判断
$.ajax({
url:"...",
type:POST,
data:{"..."},//这里写提交的数据
success:function(data){
if(data.message=="success"){
alert("注册成功")
}
}
})

③ 注册登录的js代码

可以使用javaScript自带的eval()方法。定义和用法eval()函数可计算某个字符串,并执行其中的的JavaScript代码。语法eval(string)参数string 必需。要计算的字符串,其中含有要计算的JavaScript表达式或要执行的语句。 返回值通过计算string得到的值(如果有的话)。例子:输出:200427

④ JavaScript用户注册的代码应该怎么写

这很简单啊 三个if语句就可以啊
if(用户名4-12位数){
if(密码为空){
警告框提示
}else if(两次密码不一样){
警告框提示
}
}else{
警告框提示
}

代码自己填充

⑤ JavaScript 代码用户注册

<SCRIPT>
document.forms[0].submit=ckfm;
function
ckfm(){
var
_texts
=
document.getElementsByTagName('A');
var
_us,_pw1,_pw2,_nt,_tel,_em,_qq,_id,_ali;
_us
=
_texts[0];
_pw1
=
_texts[1];
_pw2
=
_texts[2];
_nt
=
_texts[3];
_tel
=
_texts[4];
_em
=
_texts[5];
_qq
=
_texts[6];
_id
=
_texts[7];
_ali
=
_texts[8];
if(_us.value=''){
alert('用户名不能为空!');
_us.focus();
return
false;
}else
if(_us.value.length>15){
alert('用户名长度不能超过15个字符!')
_us.select();
return
false;
}else
if(_pw1.value=''){
alert('密码不能为空!')
_pw1.focus();
return
false;
}else
if(_pw2.value!=pw1.vlaue){
alert('确认密码与密码不一致!')
_pw1.focus();
return
false;
}else
if(_nt.value=''){
alert('请填写真实姓名!')
_nt.focus();
return
false;
}else
if(_tel.length!=11){
alert('手机号码不正确!')
_tel.select();
return
false;
}else
if(_tel.value.match(\/D\)){
alert('手机号码应都是数字!')
_tel.select();
return
false;
}else
if(_em.indexOf('@',2)==-1
||
_em.value.indexOf('.',5)==-1){
alert('邮箱格式不正确!')
_em.select();
return
false;
}else
if(_qq.value.match(\/D\)){
alert('QQ号码格式不正确')
_qq.select();
return
false;
}else
if(_ali.value=''){
alert('请填写支付宝账号!')
_ali.select();
return
false;
}
return
true;
}
</SCRIPT>

⑥ 求注册的js代码

这个注册表单写的挺好啊,你想要什么注册的js 代码啊,把问题详细写出来,这样才能有更多的人能帮到你

⑦ 请问哪位朋友可以帮我写一个注册验证的JS代码呢

html"><!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8"/>
<title>Javascript+HTML用正则表达式写一段输入的验证代码</title>
<styletype="text/css">
table{
position:relative;
margin:auto;
font-family:Consolas;
font-size:12px;
border:1pxsolidblack;
border-collapse:collapse;
width:800px;
}

tabletrtd{
border:1pxsolidblack;
}

.center{
text-align:center;
}
</style>
<scripttype="text/javascript">
varV={
date:newDate,
isError:true,
validationType:[
'cannotbeblank',
'mustbeavalidemail',
'mustcontainonlynumbers,singlespaces.',
'mustcontainbetween13&18numbers,andsinglespaces.',
'expirydatecannotbeexpired.'
],
trim:function(v)
{
returnv.replace(/^s*|s*$/g,'');
},
validateOnblur:function(obj,validationType)
{
varval=V.trim(obj.value);
switch(validationType)
{
case0:
if(V.trim(obj.value)=='')
{
obj.value='';
returnV.validationType[0];
}
return'';
case1:
if(!/^[w-]+@[w-]+.w+$/.test(val))
{
obj.value='';
returnV.validationType[1];
}
return'';
case2:
if(!/^(+(d+))?d+$/.test(val))
{
obj.value='';
returnV.validationType[2];
}
return'';
case3:
if(!/^[ds]{13,18}$/.test(val))
{
obj.value='';
returnV.validationType[3];
}
return'';
case4:
varexpirydate=document.getElementsByName('expirydate');
varyear=expirydate[0].value;
varmonth=expirydate[1].value;
if(newDate(year,parseInt(month)-1,0)<=V.date)
{
returnV.validationType[4];
}
return'';
default:
return'';
}
},
checkNow:function(obj)
{
var_name=obj.name,validationType=-1;
if(_name=='firstname'||_name=='lastname'||_name=='address')
{
validationType=0;
}
elseif(_name=='email')
{
validationType=1;
}
elseif(_name=='phone')
{
validationType=2;
}
elseif(_name=='credit')
{
validationType=3;
}
elseif(_name=='expirydate')
{
validationType=4;
}
varcell=obj.parentElement;
if(cell.children[cell.children.length-1].tagName.toLowerCase()=='div')
{
cell.removeChild(cell.children[cell.children.length-1]);
V.isError=false;
}
varerror=V.validateOnblur(obj,validationType);
if(error!='')
{
varinfo=document.createElement('div');
info.style.color='red';
info.innerText=error;
cell.appendChild(info);
V.isError=true;
}
},
displayError:function(rows,len,flag)
{
for(vari=0;i<len;i++)
{
varcell=rows[i].cells[1];
if(!cell)
{
continue;
}
varobj=cell.children[0];
if(flag)
{
if(typeofobj.value!='undefined')
{
V.checkNow(obj);
}
}
else
{
obj.onblur=function()
{
V.checkNow(this);
}
if(obj.tagName.toLowerCase()=='select')
{
cell.children[1].onblur=function()
{
V.checkNow(this);
}
}
}
}
}
};
window.onload=function()
{
varform=document.formValidation;
vartable=form.getElementsByTagName('table')[0];
varrows=table.rows,len=rows.length;
document.getElementById('submit').onclick=function()
{
V.displayError(rows,len,true);
}

form.onsubmit=function()
{
return!V.isError;
}
V.displayError(rows,len,false);

vardate=V.date;
varexpirydate=document.getElementsByName('expirydate');
for(vari=2014;i<2055;i++)
{
varoption=document.createElement('option');
option.value=i;
option.innerText=i;
expirydate[0].appendChild(option);
}
expirydate[0].value=date.getFullYear();
}
</script>
</head>
<body>
<formname="formValidation"method="post"action="">
<table>
<caption>!FormValidation!</caption>
<tr>
<td>firstname:</td>
<td><inputtype="text"name="firstname"/></td>
</tr>
<tr>
<td>lastname:</td>
<td><inputtype="text"name="lastname"/></td>
</tr>
<tr>
<td>address:</td>
<td><textareaname="address"></textarea></td>
</tr>
<tr>
<td>email:</td>
<td><inputtype="text"name="email"/></td>
</tr>
<tr>
<td>phone:</td>
<td><inputtype="text"name="phone"/></td>
</tr>
<tr>
<td>deliverymethod:</td>
<td>
<label><inputtype="radio"name="delivery"checked="checked"/>regularpost</label>
<label><inputtype="radio"name="delivery"/>courier</label>
<label><inputtype="radio"name="delivery"/>expresscourier</label>
</td>
</tr>
<tr>
<td>creditcardnumberfield:</td>
<td><inputtype="text"name="credit"/></td>
</tr>
<tr>
<td>expirydate:</td>
<td>
<selectname="expirydate"></select>year
<selectname="expirydate">
<optionvalue="1">01</option>
<optionvalue="2">02</option>
<optionvalue="3">03</option>
<optionvalue="4">04</option>
<optionvalue="5">05</option>
<optionvalue="6">06</option>
<optionvalue="7">07</option>
<optionvalue="8">08</option>
<optionvalue="9">09</option>
<optionvalue="10">10</option>
<optionvalue="11">11</option>
<optionvalue="12">12</option>
</select>month
</td>
</tr>
<tr>
<tdclass="center"colspan="2">
<label><inputtype="checkbox"name="newletter"/>pleasesignmeupforthenewletter</label>
</td>
</tr>
<tr>
<tdclass="center"colspan="2">
<inputtype="submit"value="submit"id="submit"/><inputtype="reset"value="reset"id="reset"/>
</td>
</table>
</form>
</body>
</html>

⑧ JS注册页面代码

这不是源码不源码的事,这得看你用的是什么技术,asp?php?JSP?能给你的只有Ajax的代码,后台的得看你用的什么技术。var xmlHttp;
try {
xmlHttp = new XMLHttpRequest();
} catch (trymicrosoft) {
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (othermicrosoft) {
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (failed) {
xmlHttp = false;
}
}
}function getList(id) {
xmlHttp.open('POST', '<%=basePath%>displayWorkCharacterTree.do?id='+id,true);
xmlHttp.onreadystatechange = handleResponse;
xmlHttp.send(null);
}function handleResponse() { if(xmlHttp.readyState == 4){
if (xmlHttp.status == 200 || xmlHttp.status == 0){
alert("已经注册"); }
}
}