奪命雷公狗jquery---52--jQuery裏的ajax的底層實現GET請求

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <script src="js/jquery.js"></script>
        <script>
            $(function(){
                $('#btnok').bind('click',function(){
                    //發送ajax請求
                    $.ajax({
                        type:'get',
                        url:'ajax1.php',
                        cache:false,
                        success:function(msg){
                            alert(msg);
                        }
                    });
                });
            });
        </script>
    </head>
    <body>
        <input type="button" id="btnok" value="OK" />
    </body>
</html>

 

php的示例代碼以下:php

 

<?php
    echo "hello jQ";

 

 

 

 

 

 

jQuery中的Ajax

 

一、jQuery中的Ajax分類

① Ajax的底層實現 ② Ajax的高級實現html

 

二、Ajax的底層實現

jQuery.ajax(options)$.ajax(options)jquery

參數說明:ajax

options要求參數是一個json對象,內容以下:json

async :是否異步,默認爲true緩存

cache :是否緩存,默認爲true異步

complete :當Ajax狀態碼爲4,所觸發的回調函數async

contentType :設置請求頭函數

data :發送Ajax請求時,所傳遞的參數,要求是一個字符串post

dataType :期待的返回值類型,text,xml,json,jsonp默認爲text

success :當Ajax狀態碼爲4響應狀態碼爲200,所觸發的回調函數

type :模擬http請求中的getpost方法

url :請求的url地址

相關文章
相關標籤/搜索