在jQuery 1.8上使用async:false

时间:2013-01-29 07:37:42

标签: jquery

我想知道我在jQuery 1.8上使用async:false编写ajax函数的方式是否正常?

function GetLoginUrl(CloudStorageName) 
{
    var res;
    $.ajax({
        url: '@Url.Action("GetUrl", "Cloud")',
        data: { CloudName: CloudeName },
        datatype: 'json',
        type: 'post',
        async: false,
        success: function (result) {
            res = result;
        },
        error: function (response) 
        { 
            OpenAlertDialog('@ErrorMsg.CloudErrMsg');
        }
    });

    return res;
}

如果这样可以,请举例说明不推荐使用的ajax调用吗?

0 个答案:

没有答案