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
     ❯   

jQuery load() 方法

❮ jQuery AJAX 方法

示例

将文件 "demo_test.txt" 的内容加载到特定的 <div> 元素中

$("button").click(function(){
  $("#div1").load("demo_test.txt");
});
亲自试一试 »

定义和用法

load() 方法从服务器加载数据,并将返回的数据放入选定的元素中。

注意: jQuery 还有一种名为 load 的事件方法。调用哪一个取决于参数。


语法

$(选择器).load(URL,数据,函数(响应,状态,xhr))

参数 描述
url 必需。指定您要加载的 URL。
data 可选。指定要与请求一起发送到服务器的数据。
function(response,status,xhr) 可选。指定 load() 方法完成后要运行的回调函数。

其他参数
  • response - 包含来自请求的结果数据。
  • status - 包含请求的状态("success"、"notmodified"、"error"、"timeout" 或 "parsererror")。
  • xhr - 包含 XMLHttpRequest 对象。

亲自试一试 - 示例

发出 AJAX 请求,并发送数据。
如何使用 data 参数发送 AJAX 请求数据(此示例使用我们 AJAX 教程 中解释的示例)。

发出 AJAX 请求并使用回调函数。
如何使用 function 参数处理 AJAX 请求返回的数据结果。

发出带有错误的 AJAX 请求。
如何使用 function 参数处理 AJAX 请求中的错误(使用 XMLHttpRequest 参数)。


❮ jQuery AJAX 方法

×

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.