仅选择选中的复选框下拉列表中的值的 jQuery 语法是什么?

发布于 2024-11-08 00:40:57 字数 582 浏览 0 评论 0原文

你好, 场景是我想选择类名 .product-dropdown 的下拉列表中选中的所有复选框的值,我尝试了以下组合,但没有任何效果 -

$(".product-dropdown li").each("input[type='checkbox']:checked", function(e){
        var cmd = $(this).val();
        addToTextBox(cmd);
});

$(".product-dropdown li input[type='checkbox']:checked").each(function(e){
        var cmd = $(this).val();
        addToTextBox(cmd);
});

$(".product-dropdown input[type='checkbox']:checked").each(function(e){
        var cmd = $(this).val();
        addToTextBox(cmd);
});

我是 jQuery 新手,不熟悉语法,我想从复选框下拉列表中选中的每个复选框中选择值并将其附加到复选框的内容

HI,
The scenario is I want to select values of all the checkboxes checked in a dropdown list with class name .product-dropdown, I tried following combonations but nothing has worked -

$(".product-dropdown li").each("input[type='checkbox']:checked", function(e){
        var cmd = $(this).val();
        addToTextBox(cmd);
});

$(".product-dropdown li input[type='checkbox']:checked").each(function(e){
        var cmd = $(this).val();
        addToTextBox(cmd);
});

$(".product-dropdown input[type='checkbox']:checked").each(function(e){
        var cmd = $(this).val();
        addToTextBox(cmd);
});

I am new to jQuery, and not familiar with the syntax, I want to select the values from each checkbox checked in the dropdown of checkboxes and append it to the contents of a checkbox

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

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

发布评论

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

评论(1

枕头说它不想醒 2024-11-15 00:40:57

关于 jQuery 文档, :checked 是正确的。

我尝试使用 :

$('input[type=checkbox]:checked').length

并成功了。

您确定类是 .product-dropdown 并且路径正确吗? (.product-dropdown input)

如果问题不在 addToTextBox 中,您也可以尝试调试。这可能是您的代码未执行的原因。

Regarding the jQuery documentation, :checked is correct.

I tried with :

$('input[type=checkbox]:checked').length

and it worked.

Are you sure the class is .product-dropdown and the path is correct ? (.product-dropdown input)

You can also try to debug if the problem isn't into addToTextBox. It could be a reason why your code isn't executed.

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