由于JS的for循环与ajax非同步运行,因此导致for循环结束了而ajax却还未执行,解决此方法有两种 1.设置ajax参数async为false,即与js同步,默认是true(异步). 这里首先引用$.Ajax()中 async 和success的官方的解释: async Boolean Default: true By default, all requests are sent asynchronous (e.g. this is set to true by default). If…