Replies: 2 comments 1 reply
-
写书源的时候遇到了这个问题,有没有大神知道这个。 |
Beta Was this translation helpful? Give feedback.
0 replies
-
nth-of-type选择的是同级元素,并不是做筛选 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
1.p:nth-of-type(2)
以上写法会获取到所有同级p标签,并取其中的第2个,这个很好理解。
2.p.item:nth-of-type(2)
按照1的用法我所理解的2,应该获取的是所有class=item的p标签,并取其中的第2个。但是实际情况却是获取的该层级所有p标签,并判断第2个是否class=item,符合则匹配,不符合就没有结果。.item在nth-of-type后面执行了,执行顺序和我理解的不太一样。
xpath可以实现这种需求,//p[@Class='item'][2]。jsoup选择器怎么些能做到这种效果?或者是实现不了这种效果?
Beta Was this translation helpful? Give feedback.
All reactions