如何从div中获取存在于div中的表中的td?
我在 div 中有一张桌子。表中的每个 td 都有一个类。
我想从 div
获取 td
。
我虽然那个children函数可以得到td
,但似乎没有。
var parentDiv = $(".divClass");
parentDiv.each(function (index) {
var childTd = $(this).children(".tdClass");
任何帮助!
I have a table inside a div. Each td
in the table has a class.
I want to get a td
from the div
.
I though that children function could get the td
but seems it does not.
var parentDiv = $(".divClass");
parentDiv.each(function (index) {
var childTd = $(this).children(".tdClass");
Any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
为什么不想使用简单的查询。 jQuery 就是为这样的事情而设计的:))
Why do not you want to use simple query. The jQuery was designed for things like this:))
如果你想遍历所有的td。你需要这样的东西。
仅 td 具有特定类别
If you want to traverse through all the td's. You need something like this.
Only td with a particular class
只需使用 jQuery 的 find 方法:
$("#.divClass").find('td')
或$("#.divClass").children('td')
或在普通表格中
我使用的是在表格中附加行。
我正在使用
......
Just use, the find method of jQuery:
$("#.divClass").find('td')
or$("#.divClass").children('td')
or in a normal table
What I'm using is appending rows in a table.
I'm using
.......
要获取您可以执行的所有 td :
要访问特定的 td,
这 可能会帮助您
to get all the td you can do :
to access a specific td then,
this might help you