在jQuery选择器中,获取匹配prev元素后紧邻的兄弟元素用下面()来实现。
A: parent>;child
B: prev+next
C: prev~siblings
D: nextAll()
A: parent>;child
B: prev+next
C: prev~siblings
D: nextAll()
举一反三
- 在jQuery选择器中,获取匹配prev元素后紧邻的兄弟元素用下面()来实现
- 通过选择器方法,判断选择器名称 $( "parent > child" ) $("prev + next") $("ancestor descendant") $("prev ~ siblings")
- 用于在给定的祖先元素下匹配所有的后代元素的选择器是? A: ancestor descendan选择器 B: parent>child选择器 C: prev+next选择器 D: prev~siblings选择器
- 要想获得匹配元素后面紧邻的同辈元素,则使用下列( )方法。 A: siblings() B: nextAll() C: prev() D: next()
- 想获得匹配元素的同辈元素,可由( )选择器筛选。 A: nextAll( ) B: siblings() C: next( ) D: prev( ) E: prevAll( )