我想td
从所有人中选择第n个td
,我该怎么做?
我知道我可以做到document.querySelectorAll("td")[nth]
,但我正在寻找一种纯粹的CSS方式.
我试过了document.querySelectorAll("td:nth-child(77)")
,但它没有给出结果document.querySelectorAll("td")[77]
.
var result = document.querySelectorAll("table td:nth-of-type(2)");
console.log(result);
nope nope
nope here
我知道我可以做到
document.querySelectorAll("td")[nth]
,但我正在寻找一种纯粹的CSS方式.
没有纯粹的CSS等价物.请参阅在整个文档中匹配特定类型的第一个/第n个元素