Jquery文档就绪函数、加载后函数

发布于 2024-12-22 03:07:51 字数 605 浏览 3 评论 0原文

我已经通过 jQuery 加载了一个表单。因此,应用于它的 $(document).ready(function() 不再起作用。加载后我们如何将函数重新建立到表单中。

内容加载到:

$('.section.com').load(window.location.href + ' .section.com .tubs')

因此,这不再起作用:

$('#commentform').ajaxForm(function () {
    $('.commentslogic').load('<?php the_permalink();?> .commentslogic .inner', function () {
        $('.commentlist li:first').hide();
        $('.commentlist li:first').slideDown(400);
        $('.commentlist li:first').effect('highlight', {}, 800);
        $('#cloader').slideUp(400);
    })
});

I have loaded in a form via jQuery. As a consequence the $(document).ready(function() that was applied to it no longer functions. How do we reestablish the function to the form after it has loaded in.

Content is loaded in:

$('.section.com').load(window.location.href + ' .section.com .tubs')

This therefore no longer functions:

$('#commentform').ajaxForm(function () {
    $('.commentslogic').load('<?php the_permalink();?> .commentslogic .inner', function () {
        $('.commentlist li:first').hide();
        $('.commentlist li:first').slideDown(400);
        $('.commentlist li:first').effect('highlight', {}, 800);
        $('#cloader').slideUp(400);
    })
});

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

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

发布评论

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

评论(2

匿名的好友 2024-12-29 03:07:51

将表单绑定放入一个函数中,以便您可以重用它:

function bindForm() {
  $('#commentform').ajaxForm(function() { 
    $('.commentslogic').load('<?php the_permalink();?> .commentslogic .inner', function(){
      $('.commentlist li:first').hide(); $('.commentlist li:first').slideDown(400); $('.commentlist li:first').effect('highlight', {}, 800); $('#cloader').slideUp(400);
    })
  });
}

现在您可以从 ready 事件调用它,也可以在 load 方法中作为回调调用它来绑定新的形式:

$('.section.com').load(window.location.href + ' .section.com .tubs', bindForm)

Put the form binding in a function so that you can reuse it:

function bindForm() {
  $('#commentform').ajaxForm(function() { 
    $('.commentslogic').load('<?php the_permalink();?> .commentslogic .inner', function(){
      $('.commentlist li:first').hide(); $('.commentlist li:first').slideDown(400); $('.commentlist li:first').effect('highlight', {}, 800); $('#cloader').slideUp(400);
    })
  });
}

Now you can call it both from the ready event, and as callback in the load method to bind the new form:

$('.section.com').load(window.location.href + ' .section.com .tubs', bindForm)
↙温凉少女 2024-12-29 03:07:51

将其放入 .load 的回调中,以便将其重新应用于替换的元素:

$('.section.com').load(window.location.href + ' .section.com .tubs', function() {
    $('#commentform').ajaxForm(function() { 

        // rest of code
    });
});

Put it into .load's callback so it gets re-applied to replaced elements:

$('.section.com').load(window.location.href + ' .section.com .tubs', function() {
    $('#commentform').ajaxForm(function() { 

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