进度旋转器
如何在 ajax 调用期间显示进度旋转器?我从 Link 获取了旋转器 gif,并且我进行 ajax 调用的代码正在使用 Dojo:
dojo.xhrPost( {
form: formName,
sync: true,
handleAs: "text",
load: function(response) {
//Spinner should be called here.. How?
//populate content here
successMessage();
} ,
error: function(error, ioargs){
//do something with errors
How do I show a progress spinner during an ajax call? I got the spinner gif from Link and my code to make ajax call is using Dojo:
dojo.xhrPost( {
form: formName,
sync: true,
handleAs: "text",
load: function(response) {
//Spinner should be called here.. How?
//populate content here
successMessage();
} ,
error: function(error, ioargs){
//do something with errors
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
具有全局 javascript 函数(例如
showAjaxWorking()
、hideAjaxWorking()
来显示/隐藏包含旋转图像的 div,定位在标准位置或特定的位置(如果适合) ..Have global javascript functions (eg
showAjaxWorking()
,hideAjaxWorking()
to show/hide a div containing a spinner image, positioned in a standard place, or somehwere specific if that suits..