Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Hpple Xpath 的类似工作也会如此
//a[4]
html 树中的第四个标签?还是我需要通过在 for() 循环中计数来以编程方式完成它?
<a>HTML 文档中第四个的 XPath是:
<a>
(//a)[4]
您的示例//a[4]将生成一组所有s,它们是各自父级<a>中的第四个,这不是您想要的。<a>
另请参阅:https ://stackoverflow.com/a/14209492/1945651