我想在网站(它的 xpath)中找到某些节点的父节点和兄弟节点。我的大问题是我想找到一个节点的兄弟姐妹,没有 ID,只能通过它的属性。
例如:
<a id="nav-europe-3231" class="" href="/EUROPE/" title="Europe News Headlines and Video from CNN.com International">Europe</a>
<a id="nav-asia-1265" class="" href="/ASIA/" title="Asia News Headlines and Video from CNN.com International">Asia</a>
我看到了一些指令,比如parent::child-node
,但它没有以这种方式找到 xpath。
我怎样才能找到这个节点的父母和兄弟姐妹?