文章出處
文章列表
GET方式
1 //創建XMLHttpRequest對象,為考慮兼容性問題,老版本的 Internet Explorer (IE5 和 IE6)使用 ActiveX 對象 2 var ajax = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP"); 3 4 //設定請求的類型,服務器URL,以及是否異步處理 5 ajax.open("get","test.ashx?name=jcx&id="+new Date(),true); 6 7 ajax.onreadystatechange=function() 8 { 9 //4:請求已完成,且響應已就緒 10 if(ajax.readyState==4) 11 { 12 //200:成功 13 if(ajax.status==200) 14 { 15 //處理結果 16 alert(ajax.responseText); 17 }else 18 { 19 alert("AJAX服務器返回錯誤!"); 20 } 21 } 22 23 } 24 25 //將請求發送到服務器 26 ajax.send();
POST方式
1 var ajax=window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject("Microsoft.XMLHTTP"); 2 3 ajax.open("post", "test.ashx", true); 4 5 ajax.onreadystatechange = function () { 6 if (ajax.readyState==4) 7 { 8 if (ajax.status==200) { 9 alert(ajax.responseText); 10 } 11 } 12 } 13 14 ajax.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); 15 ajax.send("name=jcx&id=23");
文章列表
全站熱搜