首页 > 编程 > JavaScript > 正文

探讨在JQuery和Js中,如何让ajax执行完后再继续往下执行

2019-11-20 22:32:40
字体:
来源:转载
供稿:网友
复制代码 代码如下:

  $.ajax
       ({
            cache: false,
            async: false,   // 太关键了,学习了,同步和异步的参数
            dataType: 'json', type: 'post',
            url: "../handle/Ladder_Fee_Code.ashx?ajaxaction=Select_FangAn",
            success: function (data)
            {
             alert("1");
            }
        });
             alert("2");

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表