td 元素的 html dom
如何从 dom 调用 html 表的 td 元素? document.getElementById("exampleTable").childNodes[] 应该为您提供所有 tr 元素,但如何向下两级?我要创建一个循环来读取表中每个 td 元素的文本节点
How do I call the td element of a html table from the dom? document.getElementById("exampleTable").childNodes[] Should give you all of the tr elements, but how do you go two levels down? I'm to make a loop to read the text node of each td element in the table
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将返回该表中所有 td 的 NodeList。
that will return a NodeList of all
td
s in that table.每个子节点也将有子节点,因此获取每个 TR 的子节点将为您提供所有 TD。
但如果您要进行 DOM 查询或 DOM 操作,我强烈建议使用 JQuery。
Each of those child nodes will have child nodes too, so getting the childnodes of each TR, will give you all TDs.
But if you're going to do DOM querying or DOM manipulation, I strongly suggest using JQuery.
你可以做这样的事情
you could do something like this