AJAX 入门

Posted HelloJason

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AJAX 入门相关的知识,希望对你有一定的参考价值。

AJAX = 异步 javascript 和 XML(Asynchronous JavaScript and XML)。

简短地说,在不重载整个网页的情况下,AJAX 通过后台加载数据,并在网页上进行显示。

使用 AJAX 的应用程序案例:淘宝、微博等等。

1. 语法格式

1.1 jQuery $.get() 方法

  • 基本语法:

 
   
   
 
  1. $.get(URL,data,callback);

  • 实例:

 
   
   
 
  1. $("button").click(function(){

  2.    $.get("/try/ajax/demo_test_post.php",

  3.    {

  4.        'username': 'jason',

  5.        'age': 18

  6.    },

  7.        function(data,status){

  8.        alert("数据: " + data + " 状态: " + status);

  9.    });

  10. });

1.2 jQuery $.post() 方法

  • 基本语法:

 
   
   
 
  1. $.post(URL,data,callback);

  • 实例:

 
   
   
 
  1. $("button").click(function(){

  2.    $.post("/try/ajax/demo_test_post.php",

  3.    {

  4.        'username': 'jason',

  5.        'age': 18

  6.    },

  7.        function(data,status){

  8.        alert("数据: " + data + " 状态: " + status);

  9.    });

  10. });

1.3 jQuery $.ajax() 方法

  • 基本语法:

 
   
   
 
  1. $.ajax({name:value, name:value, ... })

  • 下面的表格中列出了可能的名称/值:

名称 值/描述
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 对象的函数。
  • 实例:

 
   
   
 
  1. $("button").click(function () {

  2.    $.ajax({

  3.        type: "post",                       // 规定请求的类型(GET 或 POST)

  4.        url: "response.php",                // 提交到的url

  5.        data: { 'username': 'jason', 'age': 18 },   // 提交的数据

  6.        dataType: "html",                   // 预期的服务器响应的数据类型

  7.        success: function (msg) {

  8.            $("#text").html(msg);           // 当请求成功时运行的函数

  9.        },

  10.        error: function (msg) {

  11.            ......                          // 如果请求失败要运行的函数

  12.        }

  13.    });

  14. });

2. 完整实例

  • 前台页面 ajax001.php

 
   
   
 
  1. <!DOCTYPE html>

  2. <html lang="zh">

  3. <head>

  4.    <meta charset="UTF-8">

  5.    <title>AJAX Demo</title>

  6. </head>

  7. <body>

  8.    <div id="content">

  9.        <label>姓名:</label>

  10.        <input type="text" id="username" />

  11.        <br/>

  12.        <label>年龄:</label>

  13.        <input type="text" id="age" />

  14.        <br/>

  15.        <button id="submit">查询</button>

  16.        <span id="text">

  17.            <!-- 用以显示返回来的数据,只刷新这部分地方 -->

  18.        </span>

  19.    </div>

  20.    <script src="jquery-1.11.1.min.js"></script>

  21.    <script>

  22.        $("#submit").click(function () {

  23.            var username = $("#username").val();    // 获取 ID 为 username 的标签的值

  24.            var age = $("#age").val();              // 获取 ID 为 age 的标签的值

  25.            $.ajax({

  26.                type: "post",                       // 规定请求的类型(GET 或 POST)

  27.                url: "response.php",                // 提交到的url

  28.                data: { 'username': username, 'age': age },   // 提交的数据

  29.                dataType: "html",                   // 预期的服务器响应的数据类型

  30.                success: function (msg) {

  31.                    $("#text").html(msg);           // 当请求成功时运行的函数

  32.                },

  33.                error: function (msg) {

  34.                    $("#text").html(msg);           // 如果请求失败要运行的函数

  35.                }

  36.            });

  37.        });

  38.    </script>

  39. </body>

  40. </html>

  • 后台处理页面 response.php

 
   
   
 
  1. <?php

  2.    // 接收以post方式提交来的username数据

  3.    $username=$_POST['username'];

  4.    $age=$_POST['age'];

  5.    echo "姓名:".$username;

  6.    echo " ";

  7.    echo "年龄:".$age;

  8. ?>

  • 输入数值之后点提交,在提交按钮旁边显示了我们提交的值,整个过程页面是没有刷新的。

  • 打开浏览器的 开发者工具-->Network 栏,然后再点击 ajax001.php 中的 “ 查询 ” 按钮,可以查看到后台发送的请求。

AJAX 入门

  • 点击 resonse.php 可以查看该请求发送的详细信息

  • 点击 Response 标签,可以查看 resonse.php 收到请求后返回的数据。


以上是关于AJAX 入门的主要内容,如果未能解决你的问题,请参考以下文章

推荐net开发cad入门阅读代码片段

Javascript代码片段在drupal中不起作用

前端面试题之手写promise

Ajax 片段元标记 - Googlebot 未读取页面内容

执行AJAX返回HTML片段中的JavaScript脚本

javascript AJAX片段