jQuery/JS 页面加载
我在网站上进行了搜索,但找不到我想要的东西。
所以我希望当页面加载时显示AJAX加载器iamge(例如),而不是保持白色...
请给出更详细的代码,我是新的。
谢谢!
I taked a search over the website, but I couldn't find what exactly I want.
So I want when the page loads to display AJAX loader iamge (for example), not to stay white...
Please give more detailed code, I'm new.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我相信这就是你想要的。
I believe that is what you want.
从结构上讲,它会是这样的:
但使用某种框架会更好。 “Hash bang”(#!)是一种流行的模式,请在谷歌上搜索它。
祝你好运!
Structurally, it would be something like this:
But you will be better off using some sort of framework for it. "Hash bang" (#!) is a popular pattern, make a google search for it.
Good luck!
为了使其更明显,假设我们有带有此标记的 HTML 页面:
我们希望在用户单击“加载内容”按钮时加载内容。因此,我们需要先将单击事件绑定到该按钮,然后仅在触发后才发出 AJAX 请求。
上面的代码将 http://example.com 中的内容加载到 .加载页面时,我们希望在“内容”中显示动画 GIF 图像。因此,我们可以进一步改进我们的代码,如下所示:
.load() 函数将用加载的内容替换加载图像指示器。
您可能正在使用 jQuery 的其他 AJAX 函数,例如 $.ajax()、$.get()、$.post(),在本例中使用它们的回调函数来删除加载图像/文本并附加加载的数据。
这也是隐藏内容直到 ajax 调用完成以显示它的解决方案。
CSS:
jQ:
HTML:
To make it more apparent, imagine we have HTML page with this markup:
We want to load content when a user clicks on the "Load Content" button. So we need to bind a click event to that button first and make AJAX request only after it is fired.
he above code loads contents from http://example.com into the . While the page is being loaded we want to display our animated GIF image in the "content". So we could further improve our code like so:
The .load() function would replace our loading image indicator with the loaded content.
You might be using jQuery’s other AJAX functions like $.ajax(), $.get(), $.post(), in this case use their callback function to remove loading image/text and append your loaded data.
Here is also the solution for having the content hidden until the ajax call is completed to reveal it.
CSS:
jQ:
HTML: