失效链接处理 |
XMLHttpRequest中文参考手册 PDF 下载
本站整理下载:
提取码:7fpm
相关截图:
主要内容:
xmlHttpReq.open("GET", "http://localhost/books.xml", false);
xmlHttpReq.send();
alert(xmlHttpReq.responseText);
var xmlHttpReq = new XMLHttpRequest();
xmlHttpReq.open("GET", "http://localhost/books.xml", false);
xmlHttpReq.send();
alert(xmlHttpReq.responseText);
Dim HttpReq As New MSXML2.XMLHTTP30
HttpReq.open "GET", "http://localhost/books.xml", False
HttpReq.send
MsgBox HttpReq.responseText
Copyright © 2005 xmlhttp.cn. All rights reserved.
禁止任何形式的转载!!!!
XMLHttpRequest成成成员成员员员
属属属性属性性性
* 表表表属性性W3C文档对象象象象扩展.
方法
事件
无
参参参考参考考考
XMLHTTPRequest
Copyright © 2005 xmlhttp.cn. All rights reserved.
禁止任何形式象转载!!!!
XMLHTTP对象参考
XMLHTTPRequest 对象
XMLHTTPRequest 成员
onreadystatechange
readyState
responseBody
responseStream
responseText
responseXML
status
statusText
abort
getAllResponseHeaders
getResponseHeader
open
send
setRequestHeader
onreadystatechange* 指指当readyState属性性变变象事件处理理理理
只写
readyState 返返当前请求象状态,只读.
responseBody 将返应信信信文信unsigned byte数组形式返返.
只读
responseStream 信Ado Stream对象象形式返返响应信信理只读
responseText 将响应信信信为字字字返返.只读
responseXML
将响应信信信式信为Xml Document对象并返
返,只读
status 返返当前请求象http状态态.只读
statusText 返返当前请求象响应行状态,只读
abort 取取当前请求
getAllResponseHeaders 获取响应象的的http头
getResponseHeader 从响应信信信获取指指象http头
open
创建建个新象http请求,并指指表请求象方法求URL信以验验信信(用户名/密 态)
send 发送请求求http服务器并接接返应
setRequestHeader 单独指指请求象求个http头
onreadystatechange
|