我已經使用nth-child
定位了特定的td,但是想要看到一旦我定位了特定的td後,我就可以在列表後繼續下去那nth-child
,那會怎麼樣?如何定位第n個孩子td然後繼續下去
這是我到目前爲止有:
var start = "3";
var first = $("tr:first-child").find("td:nth-child("+start+")");
\\a function that allows me to go to the next td's that are after the third td (ignoring 1 & 2)
這實際上制定了其他一切。做得很好! – Majo0od