在页面刷新时显示加载图像
我有一个 javascript 片段,一旦有人单击特定链接,就会使用 .reload(true) 强制页面重新加载。 如何在页面刷新时显示简单的“加载”图像?
(如果有帮助的话,已经在页面上使用jquery)
I have a javascript snippet that forces a page reload using .reload(true) once someone clicks on a particular link. How can I show a simple "loading" image while the page refresh is taking place?
(Already using jquery on the page if that helps)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 jquery-loadmask 插件
Check out jquery-loadmask plugin
您没有指定加载图像的位置。 如果您希望图像本身“成为”加载图像,请首先按如下方式装饰图像:
然后,在调用
.reload
之前,执行以下操作:另一方面,如果您想将其放入固定位置,只需这样做,但将该 div 标记为隐藏,如下所示:(
也许您还将 rl 定位在某个地方)
然后,在调用 reload 之前,只需重新显示它:
You didn't specify where you wanted the loading image. If you want the images themselves to "become" a loading image, start by decorating your images as so:
Then, before calling
.reload
, do:On the other hand, if you want to put it in a fixed place, simply do so, but mark that div as hidden, as in:
(maybe you'll also position rl someplace)
Then, before calling reload, simply re-show it: