想要查找元素的全部后代,直到查找到最后一层元素,则使用下列( )方法。
A: find()
B: children()
C: next()
D: prev()
A: find()
B: children()
C: next()
D: prev()
A
举一反三
- 想要查找元素的直接子元素,则使用下列( )方法。 A: find() B: children() C: next() D: prev()
- 想要查找元素的直接父元素,则使用下列( )方法。 A: parent() B: children() C: find() D: parents()
- 下面有关jQuery查找方法的说法中,不正确的是( )。 A: children()方法不仅可以查找子元素,还可以查找其他后代元素 B: find()方法可以查找所有后代元素 C: next()返回的是一个元素,nextAll()返回的是一个集合 D: parent()方法只能查找当前元素的“父元素”
- 在jQuery中,如果想要查找当前元素所有的后代元素,应该使用( )方法来实现。 A: children() B: find() C: childrens() D: contents()
- 下列哪个选项是仅仅查找后代元素的子元素,而不是所有后代元素 A: find B: child C: children D: friend
内容
- 0
在jQuery中,如果想要查找某一个元素所有的兄弟元素,应该使用( )方法来实现。 A: prev() B: next() C: siblings() D: prevAll()
- 1
想要获得匹配元素前后所有的同辈元素,则使用下列( )方法。 A: next() B: parents() C: prev() D: siblings()
- 2
find()方法返回被选元素的后代元素,一路向下直到最后一个后代。
- 3
【单选题】 [br][/br] 在jQuery中,还可以使用( )方法获取指定元素的后代元素。 A: find () B: child() C: children() D: next()
- 4
要想获得匹配元素后面紧邻的同辈元素,则使用下列( )方法。 A: siblings() B: nextAll() C: prev() D: next()