Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个网页,在提交的那一刻,这个调用显示使用加载文本的图像 gif
jQuery showLoading plugin v1.0 显示图像,但何时加载发送动作的页面(同一页面)。在完成加载页面之前显示图像的网络休假。最后一页有执行函数的代码php,显示的图像离开,执行的函数没有完成。
我希望加载跟随显示图像,直到完成过程
任何想法???
使用 JQuery.ajax,您可以将设置异步属性设置为 false。
JQuery.ajax({ ... async: false, ...}); // subsequent code wait 'til ajax call finishes
希望它有助于欢呼