87,987
社区成员
发帖
与我相关
我的任务
分享
var tmp=document.getElementsByName("nicen").item(0).value;
if(re.test(tmp)){
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("chaxun0").innerText=xmlhttp.responseText;
if(xmlhttp.responseText == "可以注册"){
document.getElementById("chaxun0").className="span_group_ture";
return true;
}else{
document.getElementById("chaxun0").className="span_group_false";
return false;
}
}
}
xmlhttp.open("GET","adv/useryz.php?nicen="+tmp,true);//同步方式
xmlhttp.send();
}else{
document.getElementById("chaxun0").className="span_group_false";
document.getElementById("chaxun0").innerText="4-16字母开头的字符串"
return false;
}