如何使用jquery选择不在字段集下的字段集?
我有一个网络表单,其中字段集包含字段集。我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想要的字段集是表单的直接子级,请尝试:
请参阅 jQuery 子选择器文档 了解更多信息
If the fieldsets you want are a direct child of the form, try:
See the jQuery Child Selector docs for more info
您可以使用直接后代选择器:
form >;字段集
。You could use the direct descendent selector:
form > fieldset
.