ajax请求

post传参

jQuery.ajax({
        url: "${ctx}/onekey/listAll",
        type: "post",
        data: {id: '0'},
        dataType: "json",
        success: function (msg) {
            alert(msg);
        },
        error: function (XMLHttpRequest, textStatus, errorThrown) {
            alert(XMLHttpRequest.status);
            alert(XMLHttpRequest.readyState);
            alert(textStatus);
        },
        complete: function (XMLHttpRequest, textStatus) {
            this; // 调用本次AJAX请求时传递的options参数
        }
    })

 

posted @ 2019-04-25 16:38  发疯的man  阅读(210)  评论(0编辑  收藏  举报