`

ajax标准格式

阅读更多
    $.ajax({
        type: 'POST',
        url: "/admin/my/test",
        data: {userid: userid,status:status},
        dataType: "json",
        timeout: 10000,
        error: function () {
            alert("失败!");
        },
        success: function (data) {
           alert("成功!");
        }
    });

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics