Ⅰ 璇烽棶楂樻墜鐧懼害璐村惂涓鈥滈《鈥濈殑婧愪唬鐮佹槸鎬庝箞鍐欑殑
鏄鐢ˋJAX鍐欑殑
xmlhttp瀵硅薄鐩存帴get涓涓猘spx紼嬪簭
if(window.ActiveXObject)
{
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if(window.XMLHttpRequest)
{
xmlHttp = new XMLHttpRequest();
}
try
{
xmlHttp.onreadystatechange = handleStateChange;
xmlHttp.open("GET","checkuser.aspx?uname=abc&pwd=123",false);
xmlHttp.setRequestHeader("If-Modified-Since","0");
xmlHttp.send(null);
if (xmlHttp.status == 200 || xmlHttp.status == 0)
{
htmlstr=xmlHttp.responseText;
// 瑙f瀽涓涓嬭繖涓涓詫紝鎵懼嚭xml閲岀殑鎴愬姛澶辮觸銆
alert(htmlstr);//榪欓噷鑳借幏鍙杊tmlstr
}
}
catch(exception)
{
alert("鎮ㄨ佽塊棶鐨勮祫婧愪笉瀛樺湪!");
}