jquery.ajax:回调的附加参数

时间:2013-07-30 21:41:41

标签: ajax jquery

如何在{/ p>下面的成功功能中提供mydata

function addWordAddress(mydata) {
    var url = 'http://site/';
    $.ajax({
        url: url,
        jsonpCallback: callbackName,
        jsonp: false,
        cache: true,
        dataType: "jsonp",
        success: function (json) {
            console.log(json);
            console.log(mydata);
        },
        error: function () {
            console.log("error");
        }
    });
}

0 个答案:

没有答案