AJAX入门













  

      xmlhttp.open("POST","GetData1.ashx?ts="+new Data(),false);  

 

 

 

       xmlhttp.onreadystatechange=function(){

                if(xmlhttp.readyState==4){        

                           if(xmlhttp.status==200){      //如果状态码为200表示成功返回数据

                            alert(xmlhttp.responseText);这里是服务器返回的文本

                           document.getElementById("textbox1").value=xmlhttp.responseText;//将文本返回到文本框中

                             

                            }

                            else {

                             alert("ajax服务器返回错误!");

                            }

                }

         }

          xmlhttp.send();//这时才开始发送请求

}

 

 

 

以下是jquery版ajax

 

转载于:https://www.cnblogs.com/blackHorseplan/p/3899114.html

你可能感兴趣的:(xhtml,javascript)