Ⅰ 璇烽梾楂樻坠锏惧害璐村惂涓钬滈《钬濈殑婧愪唬镰佹槸镐庝箞鍐欑殑
鏄鐢ˋ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("鎭ㄨ佽块梾镄勮祫婧愪笉瀛桦湪!");
}