加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Ajax初识

发布时间:2020-12-15 22:06:48 所属栏目:百科 来源:网络整理
导读:!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" html xmlns="http://www.w3.org/1999/xhtml" head title/title script type="text/javascript" function btnClick() { // //创建
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript">
function btnClick() {

// //创建一个兼容三大主流浏览器的xmlhttpRequest对象
// var xmlhttp = false;
// try{
// xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");//ie msxml3.0+
// }
// catch(e){
// try{
// xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");//ie msxml2.6
// }
// catch(e2){
// xmlhttp = false;
// }
// }
// if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {//Firefox,Opera 8.0,Safari
// xmlhttp = new XMLHttpRequest();
// }
// return xmlhttp;
// }
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); //创建一个XMLHTTP对象

if (!xmlhttp) {
alert("创建xmlhttp对象异常!");
return false;
}
xmlhttp.open("POST","GetDate1.ashx?id="+encodeURI("中国")+"&ts" + new Date(),true); //准备向服务器的GetDate1.ashx发送请求

//XMLHTTP默认(也推荐)不是同步请求的,也就是open方法并不像webClient的DownloadString那样把服务器返回的数据拿到才返回,是异步的,因此需要监听onreadystatechange事件
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4) {
if (xmlhttp.status == 200) {//如果状态是200表示成功
document.getElementById("Text1").value = xmlhttp.responseText;//responseText属性为服务器返回的数据
}
else {
alert("Ajax服务器返回错误!");
}
}
}
xmlhttp.send();
}


</script>
</head>
<body>
<input id="Text1" type="text"/>
<input type="button" id="Button1" value="button" onclick="btnClick()"/>
</body>

</html>



ashx:

using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace AJax { /// <summary> /// GetDate1 的摘要说明 /// </summary> public class GetDate1 : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; string id = context.Request["id"];//获取到客户端的变量 string ts = context.Request["ts"]; ts = "hello"; context.Response.Write(DateTime.Now.ToString() + "---" + id+"--"+ts); //返回给客户端数据 } public bool IsReusable { get { return false; } } } }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读