jquery 中是否有一个类选择器但没有一个 id

发布于 2024-09-16 09:01:09 字数 307 浏览 3 评论 0原文

我有这样的代码:

   function DisableDropDownsMonth() {
        $(".filterDropdown").val(0);
        $(".filterDropdown").attr("disabled", "disabled");
    }

禁用一堆都具有此类的选择下拉列表。我有一个新的要求,要在每个“.filterDropdown”上调用此除非 id =“#firstDropdown”

jquery 中是否有任何语法?

i have this code:

   function DisableDropDownsMonth() {
        $(".filterDropdown").val(0);
        $(".filterDropdown").attr("disabled", "disabled");
    }

to disable a bunch of select dropdowns that all have this class. I have a new requirement to call this on every ".filterDropdown" EXCEPT if the id = "#firstDropdown"

is there any syntax for this in jquery?

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

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

发布评论

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

评论(3

你的他你的她 2024-09-23 09:01:09

您可以使用 :not() 选择器 来排除它,像这样:

$(".filterDropdown:not(#firstDropDown)").attr("disabled", "disabled");

或者可能根据您的 ID 来判断, :gt()< /a> 像这样:

$(".filterDropdown:gt(0)").attr("disabled", "disabled");

这将禁用 DOM 中除第一个 class="filterDropdown" 之外的所有内容。

You can use the :not() selector to exclude it, like this:

$(".filterDropdown:not(#firstDropDown)").attr("disabled", "disabled");

Or possibly judging by your ID, :gt() like this:

$(".filterDropdown:gt(0)").attr("disabled", "disabled");

This would disable all except the very first class="filterDropdown" in the DOM.

醉城メ夜风 2024-09-23 09:01:09

应该类似于 $(".filterDropdown:not(#firstDropdown)");

should be something like $(".filterDropdown:not(#firstDropdown)");

笨笨の傻瓜 2024-09-23 09:01:09

您可以使用以下语法

$(".filterDropdown[id!=firstDropdown]").attr("disabled", "disabled");

http://api.jquery.com/attribute-not-相等选择器/

you can use following syntax

$(".filterDropdown[id!=firstDropdown]").attr("disabled", "disabled");

http://api.jquery.com/attribute-not-equal-selector/

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