Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

XML 教程

XML 主页 XML 简介 XML 如何使用 XML 树 XML 语法 XML 元素 XML 属性 XML 命名空间 XML 显示 XML HttpRequest XML 解析器 XML DOM XML XPath XML XSLT XML XQuery XML XLink XML 验证器 XML DTD XML Schema XML 服务器 XML 示例 XML 测验 XML 证书

XML AJAX

AJAX 简介 AJAX XMLHttp AJAX 请求 AJAX 响应 AJAX XML 文件 AJAX PHP AJAX ASP AJAX 数据库 AJAX 应用程序 AJAX 示例

XML DOM

DOM 简介 DOM 节点 DOM 访问 DOM 节点信息 DOM 节点列表 DOM 遍历 DOM 导航 DOM 获取值 DOM 更改节点 DOM 删除节点 DOM 替换节点 DOM 创建节点 DOM 添加节点 DOM 克隆节点 DOM 示例

XPath 教程

XPath 简介 XPath 节点 XPath 语法 XPath 轴 XPath 运算符 XPath 示例

XSLT 教程

XSLT 简介 XSL 语言 XSLT 转换 XSLT <template> XSLT <value-of> XSLT <for-each> XSLT <sort> XSLT <if> XSLT <choose> XSLT Apply XSLT 在客户端 XSLT 在服务器 XSLT 编辑 XML XSLT 示例

XQuery 教程

XQuery 简介 XQuery 示例 XQuery FLWOR XQuery HTML XQuery 术语 XQuery 语法 XQuery 添加 XQuery 选择 XQuery 函数

XML DTD

DTD 简介 DTD 构建块 DTD 元素 DTD 属性 DTD 元素与属性 DTD 实体 DTD 示例

XSD Schema

XSD 简介 XSD 如何 XSD <schema> XSD 元素 XSD 属性 XSD 限制 XSD 复杂元素 XSD 空 XSD 仅元素 XSD 仅文本 XSD 混合 XSD 指示符 XSD <any> XSD <anyAttribute> XSD 替换 XSD 示例

XSD 数据类型

XSD 字符串 XSD 日期/时间 XSD 数值 XSD 杂项 XSD 引用

Web 服务

XML 服务 XML WSDL XML SOAP XML RDF XML RSS

参考

DOM 节点类型 DOM 节点 DOM 节点列表 DOM NamedNodeMap DOM 文档 DOM 元素 DOM 属性 DOM 文本 DOM CDATA DOM 注释 DOM XMLHttpRequest DOM 解析器 XSLT 元素 XSLT/XPath 函数

AJAX - 服务器 响应


onreadystatechange 属性

readyState 属性保存 XMLHttpRequest 的状态。

onreadystatechange 属性定义一个函数,当 readyState 发生改变时执行。

status 属性和 statusText 属性保存 XMLHttpRequest 对象的状态。

属性 描述
onreadystatechange 定义一个函数,当 readyState 属性发生改变时调用
readyState 保存 XMLHttpRequest 的状态。
0: 请求未初始化
1: 服务器连接已建立
2: 请求已接收
3: 正在处理请求
4: 请求已完成,响应已准备就绪
status 200: "OK"
403: "禁止"
404: "页面未找到"
有关完整列表,请访问 Http 消息参考
statusText 返回状态文本(例如,“OK”或“未找到”)

onreadystatechange 函数在每次 readyState 发生改变时被调用。

当 readyState 为 4 且 status 为 200 时,响应已准备就绪

示例

function loadDoc() {
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
        if (this.readyState == 4 && this.status == 200) {
            document.getElementById("demo").innerHTML =
            this.responseText;
       }
    };
    xhttp.open("GET", "ajax_info.txt", true);
    xhttp.send();
}
自己试试 »

上面示例中使用的 "ajax_info.txt" 文件是一个简单的文本文件,内容如下

<h1>AJAX</h1>
<p>AJAX 不是一种编程语言。</p>
<p>AJAX 是一种从网页访问 web 服务器的技术。</p>
<p>AJAX 代表异步 JavaScript 和 XML。</p>

onreadystatechange 事件会触发四次(1-4),每次 readyState 发生改变时触发一次。



使用回调函数

回调函数是作为参数传递给另一个函数的函数。

如果您在网站中有多个 AJAX 任务,您应该为执行 XMLHttpRequest 对象创建一个函数,并为每个 AJAX 任务创建一个回调函数。

函数调用应该包含 URL 和响应就绪时要调用的函数。

示例

loadDoc("url-1", myFunction1);

loadDoc("url-2", myFunction2);

function loadDoc(url, cFunction) {
  var xhttp;
  xhttp=new XMLHttpRequest();
  xhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
      cFunction(this);
    }
 };
  xhttp.open("GET", url, true);
  xhttp.send();
}

function myFunction1(xhttp) {
  // 这里执行操作
}
function myFunction2(xhttp) {
  // 这里执行操作
}
自己试试 »

服务器响应属性

属性 描述
responseText 以字符串形式获取响应数据
responseXML 以 XML 数据形式获取响应数据

服务器响应方法

方法 描述
getResponseHeader() 返回服务器资源的特定标头信息
getAllResponseHeaders() 返回服务器资源的所有标头信息

responseText 属性

responseText 属性以 JavaScript 字符串形式返回服务器响应,您可以根据需要使用它

示例

document.getElementById("demo").innerHTML = xhttp.responseText;
自己试试 »

responseXML 属性

XML HttpRequest 对象具有内置的 XML 解析器。

responseXML 属性以 XML DOM 对象形式返回服务器响应。

使用此属性,您可以将响应解析为 XML DOM 对象

示例

请求文件 cd_catalog.xml 并解析响应

xmlDoc = xhttp.responseXML;
txt = "";
x = xmlDoc.getElementsByTagName("ARTIST");
for (i = 0; i < x.length; i++) {
  txt += x[i].childNodes[0].nodeValue + "<br>";
  }
document.getElementById("demo").innerHTML = txt;
xhttp.open("GET", "cd_catalog.xml", true);
xhttp.send();
自己试试 »

您将在本教程的 DOM 章节中了解有关 XML DOM 的更多信息。


getAllResponseHeaders() 方法

getAllResponseHeaders() 方法返回服务器响应中的所有标头信息。

示例

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
  如果 (this.readyState == 4 && this.status == 200) {
    document.getElementById("demo").innerHTML =
    this.getAllResponseHeaders();
  }
};
自己试试 »

getResponseHeader() 方法

getResponseHeader() 方法返回服务器响应中的特定头信息。

示例

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
  如果 (this.readyState == 4 && this.status == 200) {
    document.getElementById("demo").innerHTML =
    this.getResponseHeader("Last-Modified");
  }
};
xhttp.open("GET", "ajax_info.txt", true);
xhttp.send();
自己试试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.