想要使用jquery向td添加填充
我需要在 div 中找到 td 并向该 div 中的所有 td 添加一个类,如何使用 jquery 做到这一点?
I need to find td within a div and add a class to all the td's within that div, how can I do that with jquery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
jQuery 选择器基于 CSS 选择器。 选择器之间的“”(空格)查找父节点的所有子节点(递归地)。
因此:
首先查找#mydiv,然后获取所有后代(递归查找子级),然后检查它们是否为“td”,过滤掉其余的。
如果您想将该类仅应用于“#mydiv”的直接子级:
jQuery selectors are based on CSS selectors. a " " (space) inbetween selectors finds all children of the parent node (recursively).
Therefore:
First finds #mydiv, then get all the descendants (recursively finds the children), and then checks if they are 'td', filtering out the rest.
If you wanted to apply the class just to the immediate children of '#mydiv':