$.ajax({
                                               dataType: "json",
                                               async: false,  //只需将此属性设置为false
                                               url: ~~,                                             
                                              type: "GET",
                                               success: function (data) {
                                                   if (data != null) {
                                                       $(data).each(function (index) {
                                                                                                                });

                                                   }

                                               }
                                           });
                                       }
View Code

相关文章:

  • 2022-01-08
  • 2022-12-23
  • 2021-07-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-30
猜你喜欢
  • 2021-04-26
  • 2022-01-26
  • 2021-11-18
  • 2022-12-23
  • 2022-12-23
  • 2021-06-08
  • 2022-12-23
相关资源
相似解决方案