刷新 DIV 后 jQuery 重新加载以前的元素

发布于 2024-10-20 15:02:41 字数 585 浏览 0 评论 0原文

所以我刷新了一个 DIV - 但之前提到的元素,例如 Cufon(字体替换)不再有效。我该如何实现这一目标?

    // Switch to home.
    $(".switch_home").live('click', function () {

        // Fade content out.
        $("div#content_hldr").fadeOut("fast", function () {

            // Load Home page in.
            $("div#content_hldr").load("content/content.home.php");

            // Cufon.replace('h2'); <----

            // Fade in the content.
            $("div#content_hldr").fadeIn("fast");

        });

    });

评论实际上应该发生什么。最好的情况是,我应该能够重新加载所有以前的元素和功能/事件。

这可能吗?

谢谢!

So I have refreshed a DIV - but previous stated elements such as Cufon (font replacement) are not active anymore. How do I achieve this?

    // Switch to home.
    $(".switch_home").live('click', function () {

        // Fade content out.
        $("div#content_hldr").fadeOut("fast", function () {

            // Load Home page in.
            $("div#content_hldr").load("content/content.home.php");

            // Cufon.replace('h2'); <----

            // Fade in the content.
            $("div#content_hldr").fadeIn("fast");

        });

    });

Commented what should happen, actually. Best scenario, I should be able to reload all previous elements and functions / events.

Is this possible?

Thanks!

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

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

发布评论

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

评论(1

甜警司 2024-10-27 15:02:41

只需将 Cufon (不知道那是什么)应用于 $.load 回调中新加载的元素:

$("div#content_hldr").load("content/content.home.php", function() {
    $(".blah").Cufon();
});

Just apply Cufon (no idea what that is) to newly loaded-in elements within $.load's callback:

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