有没有办法循环遍历字段集中的所有字段?
我想更改特定字段集中所有字段的类。
有没有办法循环遍历字段集中的字段?
I would like to change the class for all the fields in a specific fieldset.
Is there a way to loop through the fields in a fieldset?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用
getElementsByTagName
。(如果您只关心
input
字段,则可能会丢失外部标记循环。)如果您需要按文档顺序(而不是按标记分组)它们,则必须手动遍历元素,这会很痛苦而且有点慢。您可以使用
fieldset.querySelectorAll('input, textarea, select, button')
,但并非所有浏览器都支持该功能。 (特别是 IE6-7 早于它。)You can use
getElementsByTagName
.(If you only care about
input
fields, you could lose the outer tag loop.)If you needed them in document order (rather than grouped by tag) you'd have to walk over the elements manually, which will be a pain and a bit slow. You could use
fieldset.querySelectorAll('input, textarea, select, button')
, but not all browsers support that yet. (In particular, IE6-7 predate it.)使用 jQuery(耶!):
Using jQuery (yay!):
请注意,以下解决方案适用于非 JQUERY 实现。
实现这样的 getElementsByClassName 方法:
实现下面的代码后,您可以使用 document.getElementsByClassName("elementsInFieldSetClass") 它将返回具有该类的元素的数组。
Note the solution below is for NON-JQUERY Implementations.
Implement a getElementsByClassName Method like this:
After you implement the code below you can then use document.getElementsByClassName("elementsInFieldSetClass") it will return an array of the elements with that class.
这里是另一个 jQuery 解决方案。
如果您只是向元素添加一个类,就这么简单:
.addClass()(像许多其他 jQuery 函数一样)将适用于与选择器匹配的所有元素。
示例: http://jsfiddle.net/HANSG/8/
Another jQuery solution here.
If you are simply adding a class(es) to the elements, it's this simple:
.addClass() (like many other jQuery functions) will work on all of the elements that match the selector.
Example: http://jsfiddle.net/HANSG/8/
永久吗?查找&在您选择的编辑器中替换。
当用户点击某些东西时? jQuery 方式:
Permanently? Find & replace in your editor of choice.
When the user clicks something? jQuery way: