ajax与后台数据交互

前端之家收集整理的这篇文章主要介绍了ajax与后台数据交互前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<span style="font-family:SimHei;font-size:14px;">function dataForJson(url,dataJson) {
    var json;
    $.ajax({
        type: "POST",url: url,获取数据的链接(指向的是WebService.asmx,例如:../webservice/ajaxDecisionService.asmx/selectOperationCount)
        data: dataJson,contentType: "application/json; charset=utf-8",dataType: "json",async: false,//如果要在$.ajax外面获取ajax获取到的值,则ajax必须获得同步
        success: function (msg) {
            json = msg;
        }
    });
    return json;
}</span>
原文链接:https://www.f2er.com/ajax/165812.html

猜你在找的Ajax相关文章