我有一个大约需要 15 秒来处理的表单,并且希望在提交表单后显示一个微调器 gif,并在表单完成后将其删除。表单还会重定向到新页面,并且想知道完成此操作的最佳方法是什么?我应该使用 Ajax 提交此表单吗?提前感谢您的建议!
问问题
719 次
2 回答
4
是的,您可以通过 ajax 来实现。使用此ajaxStop()和ajaxStart()在处理 ajax 请求时显示和隐藏您的动画。
于 2013-05-14T03:47:14.190 回答
1
You can definitely do it via Ajax. Put up an animated gif when the ajax call is kicked off, and remove it when the Ajax callback returns
Ex:
//add spinner gif
//make ajax request
//process call back and remove spinner
于 2013-05-14T03:44:44.060 回答