想要显示“正在加载......”在 PHP 页面中
我正在用 PHP 开发一个网页,需要以下功能: 1. 当用户单击“表示感谢”时,应将其更改为“完成!”。 2.同时我想调用indexController中的一个action。 3、此时我要显示“正在加载......” 4.当前页面有大量动态内容,也不宜改变。
请建议我应该做什么来完成上述任务......
I am developing a web-page in PHP that needs following functionality:
1. When User click on "Say Thanks" it should be changed with "Done!".
2. At the same time I want to call an action in indexController.
3. At this time I want to show "loading...."
4. The current page has a lot of dynamic contents that should also not change.
Please suggest me what should I do to complete above tasks......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想你需要一个 AJAX 调用。当您按“更多”时,我通常会这样做来加载评论等。在我的例子中,有一个空的 div 和一个
标签,其中包含评论视图的链接(具有单独的操作 ofc)。然后我使用 jQuery 来实现 AJAX 魔法:
我希望这会有所帮助。
I figure you need an AJAX call. I usually do that for loading comments and such when you press "more". In my case, there's an empty div and an
<a>
tag with the link to the comments view (with a separate action, ofc). Then I use jQuery for the AJAX magic:I hope this helps.
学习使用 JQuery、JQuery用户界面。这并不难!我认为您需要学习以下内容来解决您的问题:
Learn to use JQuery, JQuery UI. It isn't that hard! What I think you need to learn is the following for your problem: