使用 ajax/jquery 按特定顺序加载元素

发布于 2024-11-18 15:22:02 字数 188 浏览 3 评论 0原文

当有人进入我的页面时,我想首先在页面上加载 #portfolio#header div。

然后我想在前 2 个完成加载后开始加载 #slide (以改进功能)。

我怎样才能使用 ajax/jquery 做到这一点?

预先非常感谢!

When someone enters my page, I want to load #portfolio and #header divs first on the page.

Then I want to start loading #slide after the first 2 have finished loading (to improve functionality).

How can I do that using ajax/jquery?

Thanks a lot in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

长不大的小祸害 2024-11-25 15:22:02

我假设您正在使用对 $.ajax 的调用来进行加载#portfolio#header

从 jQuery 1.5 开始,您可以使用 $.when 执行操作当多个 AJAX 请求完成时:

$.when(
    $.ajax({
        /* options to load #portfolio */
    }),
    $.ajax({
        /* options to load #header */
    })
).then(function() {
    $.ajax({
       /* options to load #slide */
    });
});

I presume you are using calls to $.ajax to do the loading of #portfolio and #header.

From jQuery 1.5, you can use $.when to perform an action when multiple AJAX requests have completed:

$.when(
    $.ajax({
        /* options to load #portfolio */
    }),
    $.ajax({
        /* options to load #header */
    })
).then(function() {
    $.ajax({
       /* options to load #slide */
    });
});
鹤舞 2024-11-25 15:22:02

您可以嵌套 ajax 调用,并在上一步成功的 ajax 调用的基础上获取下一步。

$.ajax({ // Getting portfolio hear
     success: function(){
        $.ajax({ // Getting header here, on success callback of portfolio call
            success: function(){
                $.ajax({ // Getting slide here, on success callback of header
                    // So on,
                });
             }
        });
     }
});

You can nest ajax calls and get each next step on the success ajax call of the previous step.

$.ajax({ // Getting portfolio hear
     success: function(){
        $.ajax({ // Getting header here, on success callback of portfolio call
            success: function(){
                $.ajax({ // Getting slide here, on success callback of header
                    // So on,
                });
             }
        });
     }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文