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 ajaxSetup() 方法

❮ jQuery AJAX 方法

示例

为所有 AJAX 请求设置默认 URL 和成功函数

$("button").click(function(){
  $.ajaxSetup({url: "demo_ajax_load.txt", success: function(result){
    $("div").html(result);}});
  $.ajax();
});
试一试 »

定义和用法

ajaxSetup() 方法为将来的 AJAX 请求设置默认值。


语法

$.ajaxSetup({name:value, name:value, ... })

参数指定 AJAX 请求的设置,使用一个或多个名称/值对。

下表中可能的名称/值

名称 值/描述
async 一个布尔值,指示请求应异步处理还是同步处理。默认值为 true
beforeSend(xhr) 发送请求之前运行的函数
cache 一个布尔值,指示浏览器是否应该缓存请求的页面。默认值为 true
complete(xhr,status) 请求完成时运行的函数(在 success 和 error 函数之后)
contentType 向服务器发送数据时使用的内容类型。默认值为:"application/x-www-form-urlencoded"
context 为所有 AJAX 相关回调函数指定 "this" 值
data 指定要发送到服务器的数据
dataFilter(data,type) 用于处理 XMLHttpRequest 的原始响应数据的函数
dataType 服务器响应的预期数据类型。
error(xhr,status,error) 请求失败时运行的函数。
global 一个布尔值,指定是否为请求触发全局 AJAX 事件处理程序。默认值为 true
ifModified 一个布尔值,指定请求是否仅在响应自上次请求以来已更改时才成功。默认值为:false。
jsonp 一个字符串,覆盖 jsonp 请求中的回调函数
jsonpCallback 指定 jsonp 请求中回调函数的名称
password 指定 HTTP 访问身份验证请求中使用的密码。
processData 一个布尔值,指定是否将与请求一起发送的数据转换为查询字符串。默认值为 true
scriptCharset 指定请求的字符集
success(result,status,xhr) 请求成功时运行的函数
timeout 请求的本地超时(以毫秒为单位)
traditional 一个布尔值,指定是否使用传统的参数序列化方式
type 指定请求的类型。 (GET 或 POST)
url 指定要发送请求的 URL。默认值为当前页面
username 指定 HTTP 访问身份验证请求中使用的用户名
xhr 用于创建 XMLHttpRequest 对象的函数

试一试 - 示例

为 AJAX 请求指定错误处理程序
如何使用 error 设置为 AJAX 请求指定错误处理程序。


❮ 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.