想要显示“正在加载......”在 PHP 页面中

发布于 2024-10-14 01:18:11 字数 168 浏览 3 评论 0原文

我正在用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

素手挽清风 2024-10-21 01:18:11

我想你需要一个 AJAX 调用。当您按“更多”时,我通常会这样做来加载评论等。在我的例子中,有一个空的 div 和一个 标签,其中包含评论视图的链接(具有单独的操作 ofc)。然后我使用 jQuery 来实现 AJAX 魔法:

$(function() { 
    $("a.CommentsListBtn").click(function() { 
        var tmpHref = $(this).attr("href");
        var tmpLayer = $(this).parent().children("div.CommentsList");
        tmpLayer.load(tmpHref, function() {
            tmpLayer.stop().slideDown("medium");
        });
        return false;
    });
});

我希望这会有所帮助。

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:

$(function() { 
    $("a.CommentsListBtn").click(function() { 
        var tmpHref = $(this).attr("href");
        var tmpLayer = $(this).parent().children("div.CommentsList");
        tmpLayer.load(tmpHref, function() {
            tmpLayer.stop().slideDown("medium");
        });
        return false;
    });
});

I hope this helps.

野侃 2024-10-21 01:18:11

学习使用 JQueryJQuery用户界面。这并不难!我认为您需要学习以下内容来解决您的问题:

Learn to use JQuery, JQuery UI. It isn't that hard! What I think you need to learn is the following for your problem:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文