如何在页面加载时显示ajax加载gif动画?
我尝试在我的网站中实现 AJAX。当单击 div Changepass 的内容时,它应该加载changepass.template.php。这是我为此使用的代码。
$(function() {
$(".changepass").click(function() {
$(".block1").load("views/changepass.template.php");
return false;
});
我的问题是如何在页面changepass.template.php完全加载时显示GIF动画(loading.gif)。请给我一些代码提示。
I try to implement AJAX in my website. When the content of the div changepass is clicked then it should load changepass.template.php. Here is the code im using for that.
$(function() {
$(".changepass").click(function() {
$(".block1").load("views/changepass.template.php");
return false;
});
My question is how to show GIF Animation (loading.gif) while the page changepass.template.php is fully loaded. Give me some code tips Please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
有很多方法可以做到这一点。
一个简单的方法:
JS:
根据 James Wiseman 的建议将 display:block 编辑为 show() :)
There are many approaches to do this.
A simple way to do:
JS:
Edited display:block to show() after suggestion from James Wiseman :)
为了使它更健壮一点,例如,您忘记将 the 添加
到 html 中,您也可以在 jQuery 中执行此操作,例如:
它将自动添加 div。
只需在 onclick 按钮事件上触发它即可。
使其不太容易出错。
To make it a little more robust, for example, you forget to add the
to the html, you can also do this in jQuery, something like:
Which will add the div automatically.
Just fire this on the onclick button event.
Makes it a little less open to errors.
而不是设置样式
只需使用
.hide()
和 .show()
方法。这些说明了 HTMl 元素的浏览器默认样式表定义。您可能不想显示图像的“块”。一个元素可以有多种可能的显示样式:
http://www.w3schools.com /htmldom/prop_style_display.asp
Rather that setting the style
Just use the
.hide()
and .show()
methods.These account for the brower default stylesheet definitions for HTMl elements. You may not want to display 'block' for the image. There can be loads of different possible display styles for an element:
http://www.w3schools.com/htmldom/prop_style_display.asp
您可以在调用 load 后调用一些方法来显示加载 gif 并使用 load 函数中的回调隐藏它:
you can call some method to show loading gif after calling load and hide it using callback in load function: