jQuery 触发器(“click”)未触发复选框上的 .click 事件

发布于 2024-12-08 02:16:27 字数 1728 浏览 0 评论 0原文

我的表标题中有一个全选复选框,它会检查表该列中的所有复选框:

<input class="check-all" type="checkbox" id="masterCheck" />

但是,在我的一个页面上,我想在页面加载时自动检查全选复选框。

为此,我尝试触发一个触发器('click')函数,如下所示:

$(document).ready(function () {
    if ($("#masterCheck").attr('checked')) {
    } else {
        $("#masterCheck").trigger('click');
    }
});

这可以很好地检查复选框,但不会触发类 .check-all< 的复选框的自定义单击事件/strong>(如下):

$(function () {
    $('.check-all').click(function () {
        $(this).parents('table:eq(0)').find(':checkbox').attr('checked', this.checked);
    });
});

我还尝试添加 Javascript setTimeout,认为自定义点击功能尚未加载,但在等待 1、2 和 3 后仍然没有触发自定义点击功能秒。

页面加载后,我可以取消选中预先选中的复选框并重新选中它以完美选中该列中的所有复选框。

我是否必须在 Document.ready 上的 jQuery 中添加一些特殊的内容才能允许它触发自定义单击事件?

***EDIT1:

好的,我尝试在页面上的 document.ready 函数上方添加自定义单击事件,以确保其已加载(因为之前的自定义单击事件位于我的 _Layout 中使用的主 .js 文件中) 。除此之外,我还更改了复选框的类以与新的自定义单击事件相对应,这样就不会与主 .js 文件中的类发生冲突。

<input class="check-allx" type="checkbox" id="masterCheck" />


// Check all checkboxes when the one in a table head is checked:
    $(function () { 
        $('.check-allx').click(function () {
            $(this).parents('table:eq(0)').find(':checkbox').attr('checked', this.checked);
            alert(this);
        });
    });
// Check for unchecked masterCheck
    $(document).ready(function () {
        if ($("#masterCheck").attr('checked')) {
        } else {
            //$("#masterCheck").trigger('click');
            $("#masterCheck").click();
        }
    });

这似乎在自定义点击事件中抛出了我的警报,这是进度,但我的所有复选框都没有像应有的那样进行检查。注意:我还将触发器('click')更改为 .click(),在我的情况下两者都执行相同的操作。

I have table with a check-all checkbox in the header which checks all the checkboxes in that column of the table:

<input class="check-all" type="checkbox" id="masterCheck" />

However, on one of my pages I would like to automatically check the check-all checkbox on page load.

To do this I've attempted to fire a trigger('click') function like the one below:

$(document).ready(function () {
    if ($("#masterCheck").attr('checked')) {
    } else {
        $("#masterCheck").trigger('click');
    }
});

This checks the checkbox fine, but doesn't fire my custom click event for checkboxes with the class .check-all (below):

$(function () {
    $('.check-all').click(function () {
        $(this).parents('table:eq(0)').find(':checkbox').attr('checked', this.checked);
    });
});

I've also tried adding a Javascript setTimeout, thinking that the custom click function wasn't being loaded quite yet, but it still didn't fire the custom click function after waiting 1, 2, and 3 seconds.

Upon page load, I can then un-check my pre-checked checkbox and re-check it to check all of the checkboxes in the column perfectly.

Do I have to add something special to my jQuery on the Document.ready to allow it to fire the custom click event?

***EDIT1:

Ok, I've attempted to add the custom click event right above the document.ready function on my page to ensure it's loaded (as the previous custom click event is in a master .js file used in my _Layout). In addition to this, I've changed the class of my checkbox to correspond with my new custom click event so I don't conflict with the one in my master .js file.

<input class="check-allx" type="checkbox" id="masterCheck" />


// Check all checkboxes when the one in a table head is checked:
    $(function () { 
        $('.check-allx').click(function () {
            $(this).parents('table:eq(0)').find(':checkbox').attr('checked', this.checked);
            alert(this);
        });
    });
// Check for unchecked masterCheck
    $(document).ready(function () {
        if ($("#masterCheck").attr('checked')) {
        } else {
            //$("#masterCheck").trigger('click');
            $("#masterCheck").click();
        }
    });

This seems to throw my alert within the custom click event which is progress, but to no avail do all my checkboxes check like they should. Note: I've also changed the trigger('click') to a .click(), which both do the same thing in my situation.

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

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

发布评论

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

评论(4

时光倒影 2024-12-15 02:16:27

更新:这仅适用于 jQuery 1.8 及更低版本。这是 在 jQuery 1.9 中已修复

问题在于,在 jQuery 中手动调用 click() 的工作方式与实际单击不同。

当您实际单击时,首先更改复选框状态,然后调用您的单击处理程序。

当您调用 click() 时,首先调用单击处理程序,然后更改复选框状态。

因此,当您在点击处理程序中调用 click 时,this.checked 仍然为 false。您可以通过将其设置为 change 处理程序而不是 click 处理程序来解决此问题,如下所示:

$('.check-allx').change(function () {
    $(this).parents('table:eq(0)').find(':checkbox').attr('checked', this.checked);
});

请参阅在 jQuery 中,为什么以编程方式触发复选框上的“click()”不会立即选中它? 获取有关实际手动点击和 jquery 触发点击之间差异的更完整解释。

Update: This only applies to jQuery 1.8 and below. This was fixed in jQuery 1.9.

The problem is that manually calling click() in jQuery works differently than an actual click.

When you actually click, first the checkbox state is changed, then your click handler is called.

When you call click(), first the click handler is called, then the checkbox state is changed.

So when you call click, in your click handler, this.checked is still going to be false. You can fix this by making it a change handler instead of a click handler, like this:

$('.check-allx').change(function () {
    $(this).parents('table:eq(0)').find(':checkbox').attr('checked', this.checked);
});

See In jQuery, why does programmatically triggering 'click()' on a checkbox not immediately check it? for a fuller explanation of the difference between actual manual clicks and jquery triggered clicks.

划一舟意中人 2024-12-15 02:16:27

示例:

$("#recurrence").trigger('click');

以下代码将在复选框状态更改后执行。

$("#recurrence").click(function () {
    $(this).change(function(){
        if (this.checked) {
            $(".recurr-section").show();
        } else {
            $(".recurr-section").hide();
        }
    });        
});

Example:

$("#recurrence").trigger('click');

The below will be executed after the checkbox state change.

$("#recurrence").click(function () {
    $(this).change(function(){
        if (this.checked) {
            $(".recurr-section").show();
        } else {
            $(".recurr-section").hide();
        }
    });        
});
旧人九事 2024-12-15 02:16:27

以编程方式设置选中的属性不会触发相应的点击事件,因此您在设置属性时必须添加自己的.trigger('click')

Setting the checked attribute programmatically doesn't trigger a corresponding click event, so you'd have to add your own .trigger('click') when you set the attribute.

时间你老了 2024-12-15 02:16:27

好吧,考虑到我只需要该单独页面上的功能,我采取了简单的方法,避免尝试一起启动自定义点击事件。

今天早上喝完咖啡后,我的思路更加清晰了。我已添加此代码作为解决方法。

$(document).ready(function () {
        $('table#OHTable input[type=checkbox]').attr('checked', 'checked');
    });

这只是检查表中的所有复选框,并且当事后单击我的 masterCheck 时,仍然会触发正确的单击事件。

Alright, considering I only needed that functionality on that individual page I've gone the easy way out and avoided trying to launch the custom click event all together.

After a coffee this morning it a was a bit clearer to me. I've added this code as a work-around.

$(document).ready(function () {
        $('table#OHTable input[type=checkbox]').attr('checked', 'checked');
    });

This simply checks ALL my checkboxes in my Table, and the proper click event is still fired when my masterCheck is clicked after the fact.

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