这里后台选用的是ASP.NET
JS端的核心代码如下:
if (window.XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); } else if (window.ActiveXObject) { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } else { alert("创建对象失败,请更换浏览器"); } var url = "Default.aspx"; xmlHttp.onreadystatechange = function(){ if (xmlHttp.readyState==4 && xmlHttp.status==200) { alert(xmlHttp.responseText); } } xmlHttp.open("GET",url,true); xmlHttp.send();
最上面做的判断是为了兼容浏览器。
回调函数放在onreadystatechange里,一般readyState=4,status=200,就相当于成功响应。
open()三个参数,第一个是Method,可以get或post,第二个是目标地址,第三个是是否异步。
send()如果是post的话,可以send参数。
ASP.NET的代码:
protected void Page_Load(object sender,EventArgs e) { Response.Clear(); Response.Write(DateTime.Now); Response.End(); }原文链接:https://www.f2er.com/ajax/163449.html