Ajax get使用方法

文章描述:

ajax get的使用方法

 

script

$(function(){
    $.ajax({
        url: "ajax.php",
        type: "GET",
        dataType: 'json',
        success: function (data) {
            layer.msg(data.code);
        }
    });
})

php

$data = array('code'=>200,'message'=>"hello");
echo json_encode($data);

 

发布时间:2021/12/16

发表评论