1. 程式人生 > >JQ ajax 請求

JQ ajax 請求

.ajax get pos 為我 esp 代碼 resp err php

相比 js 來說JQ為我們封裝了 $.ajax直接用就行了,既簡單又方便,減少了代碼量。

    //jq ajax 請求
    $.ajax({
        type: "GET"/"POST",
        url: "目標文件.php",
        data: {
           所要傳到後端的數據
        },
        async:true,
        dataType: "json",
        sucess:responsRes,
        error:function (err) {
            console.log(err);
        }
    });
    function responsRes(abc){
        console.log(abc);
    }

JQ ajax 請求