ajax加载在元素之前插入

发布于 11-29 10:52 字数 800 浏览 1 评论 0原文

我想让 jQuery AJAX 加载按原样在导航之前插入,而不是替换元素的内容。

我试图通过在导航之前将其加载到新的 div 中来实现此目的,但我在展开它时遇到了麻烦,因为 .unwrap() 展开了父级而不是当前的 div。尝试打开 div .children() 会破坏我的 AJAX 负载。

navigation.before(
    $('<div />')
        .load(nextLink + ' .post', function() {
            pageNum++;
            nextLink = nextLink.replace(/\/page\/[0-9]?/, '/page/'+ pageNum);

            if(pageNum <= max) {
                navigation.children('a').text('Load More');
            }
            else {
                navigation.children('a').text('Nothing else to load.');
            }
        })
);

如果您想知道它来自哪里,它是 使用 AJAX 加载下一个 WordPress 帖子

I want to have the jQuery AJAX load to insert before the navigation as-is instead of replacing the contents of an element.

I'm trying to accomplish this by loading it in a new div before the navigation, but I'm having trouble unwrapping it as .unwrap() unwraps the parent and not the current div. Trying to unwrap the divs .children() breaks my AJAX load.

navigation.before(
    $('<div />')
        .load(nextLink + ' .post', function() {
            pageNum++;
            nextLink = nextLink.replace(/\/page\/[0-9]?/, '/page/'+ pageNum);

            if(pageNum <= max) {
                navigation.children('a').text('Load More');
            }
            else {
                navigation.children('a').text('Nothing else to load.');
            }
        })
);

If you're wondering where this came from, it's a modified version of Load Next WordPress Posts With AJAX

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

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

发布评论

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

评论(1

感性不性感2024-12-06 10:52:55

试试这个

$('<div />')
    .load(nextLink + ' .post', function() {
        pageNum++;
        nextLink = nextLink.replace(/\/page\/[0-9]?/, '/page/'+ pageNum);

        if(pageNum <= max) {
            navigation.children('a').text('Load More');
        }
        else {
            navigation.children('a').text('Nothing else to load.');
        }

        navigation.before($(this).html());
    });

Try this

$('<div />')
    .load(nextLink + ' .post', function() {
        pageNum++;
        nextLink = nextLink.replace(/\/page\/[0-9]?/, '/page/'+ pageNum);

        if(pageNum <= max) {
            navigation.children('a').text('Load More');
        }
        else {
            navigation.children('a').text('Nothing else to load.');
        }

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