ajax操作ajax异步获取数据,查询用户数据

<script type="text/javascript">  
  var xmlHttp;  
  function createXMLHttpRequest()  
  {  
  if(window.ActiveXObject)  
  {  
  xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");  
  }  
  else if(window.XMLHttpRequest)  
  {  
  xmlHttp = new XMLHttpRequest();  
  }  
  }  
  function CheckUserName()  
  {  
  var us=document.getElementById("txtname").value;  
  if(us!="")  
  {  
  createXMLHttpRequest();  
  var url= "RegistValidate.ashx?username="+escape(document.getElementById("txtname").value);  
  xmlHttp.open("GET",url,true);  
  xmlHttp.onreadystatechange=ShowResult;  
  xmlHttp.send(null);  
  }  
  }  
  function ShowResult()  
  {  
  if(xmlHttp.readyState==4)  
  {  
  if(xmlHttp.status==200)  
  {  
  var s;  
  s=xmlHttp.responseText;  
  alert(s);  
  }  
  }  
  }  
</script>
textbox1.Attributes.Add("onblur","CheckUserName()");

————————————————————————————————————————————————————————

 

 

 

第二种方法:

___________________________________________________________________________________________

 

JScript code
  
  
// 创建异步对象 function createXMLHttpRequest1() { if (window.ActiveXObject) { xmlHttp = new ActiveXObject( " Microsoft.XMLHTTP " ); } else if (window.XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); } } function checkUserName(userName) { if (userName != "" && userName.length > 5 ) { createXMLHttpRequest1(); var queryString = " exeistsUserName.aspx? " ; // 在 CheckfirstName 检测用户名 queryString = queryString + " UserName= " + userName; // 方法 handleStateChange1 没有参数 直接使用方法名字引用 xmlHttp.onreadystatechange = handleStateChange1; // 如果 有参数就是 下面的例子: // xmlHttp.onreadystatechange = function(){ handleStateChange1(参数)} xmlHttp.open( " GET " , queryString, true ); xmlHttp.send( null ); } } function handleStateChange1() { if (xmlHttp.readyState == 4 ) { if (xmlHttp.status == 200 ) { var data = xmlHttp.responseText; var div_uNameMsg = document.getElementById( " div_uNameMsg " ); div_uNameMsg.style.display = "" ; if (data == " 1 " ) { div_uNameMsg.style.backgroundColor = " #E45142 " ; div_uNameMsg.innerHTML = " 对不起该用户已存在! " ; isExeistsUName = true ; } else if (data == " 0 " ) { div_uNameMsg.style.backgroundColor = " #008000 " ; div_uNameMsg.innerHTML = " 该用户可以使用! " ; isExeistsUName = false ; } else if (data == " -1 " ) { div_uNameMsg.style.backgroundColor = " #E45142 " ; div_uNameMsg.innerHTML = " 服务器繁忙,出现未知错误! " ; isExeistsUName = true ; } } } }
用户名:<asp:TextBox ID="txtName" runat="server" οnblur="checkUserName(this.value)"></asp:TextBox> 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值