How to express this consciousness: a parent node with the characteristics of a child node?

< td > < input type= "text" > < / td >

document.querySelectorAll ("td input [type = "text"]")
this sentence is to find input, what kind of input,
1. The parent node is td
2.type = "text"

now, I"m going to find out the td
1. Have child node input [type = "text"]
how to write this expression document.querySelectorAll

Jul.09,2021

all input

Menu