Ajax源代码
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Ajax源代码
代码清单2-1,创建XMLHttpRequest对象
#001
#002
#013
代码清单2-2,将JavaScript嵌入html页面中
#001 …….
#002
#003
#004
#005 …..
#006 一般JavaScript写在这里
#007 ……
#008
#009
#010
#011
#012
#013 ……
代码清单2-3 标签应用示意
#001
#002
#006
代码清单2-4 创建XMLHttpRequest时处理IE版本差异#001
#002
#024
代码清单2-5 使用getAllResponseHeaders()得到HTTP响应全部信息
#001 var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");
#002 xmlhttp.open("GET", "http://localhost/sample.xml", false);
#003 xmlhttp.send();
#004 document.write(xmlhttp.getAllResponseHeaders());
代码清单2-6 GET方式提交的HTTP头内容:``
#001 GET /ajaxstudy/function.jsp? reqparam = reqparamvalue HTTP/1.1
#002 Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/msword, */*
#003 Referer: http://localhost//example.html
#004 Accept-Language: zh-cn
#005 Accept-Encoding: gzip, deflate
#006 User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
#007 Host: localhost:8080
#008 Connection: Keep-Alive
代码清单2-7 向服务器发送GET请求
#001