想要使用jquery向td添加填充

发布于 2024-07-19 04:41:10 字数 63 浏览 6 评论 0原文

我需要在 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 技术交流群。

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

发布评论

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

评论(2

凡尘雨 2024-07-26 04:41:10
$("#myDiv td").addClass("myClass");
$("#myDiv td").addClass("myClass");
超可爱的懒熊 2024-07-26 04:41:10

jQuery 选择器基于 CSS 选择器。 选择器之间的“”(空格)查找父节点的所有子节点(递归地)。

因此:

$('#myDiv td')

首先查找#mydiv,然后获取所有后代(递归查找子级),然后检查它们是否为“td”,过滤掉其余的。

如果您想将该类仅应用于“#mydiv”的直接子级:

$('#myDiv > td')

jQuery selectors are based on CSS selectors. a " " (space) inbetween selectors finds all children of the parent node (recursively).

Therefore:

$('#myDiv td')

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':

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