如何使用jquery选择不在字段集下的字段集?

发布于 2024-12-05 09:16:16 字数 59 浏览 0 评论 0原文

我有一个网络表单,其中字段集包含字段集。我想使用 jquery 来选择非子字段集?我怎样才能做到这一点?

I have a webform, where fieldset contains fieldsets. I want to use jquery to select the fieldsets that are not children? how can i do that?

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

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

发布评论

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

评论(2

心房敞 2024-12-12 09:16:16

如果您想要的字段集是表单的直接子级,请尝试:

$('form > fieldset')

请参阅 jQuery 子选择器文档 了解更多信息

If the fieldsets you want are a direct child of the form, try:

$('form > fieldset')

See the jQuery Child Selector docs for more info

等往事风中吹 2024-12-12 09:16:16

您可以使用直接后代选择器: form >;字段集

You could use the direct descendent selector: form > fieldset.

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