有没有可以给我XPAP的所有节点的HTML页面的任何图书馆?
解决方法
is there any library that can give me
XPATH for all the nodes in HTML page
是的,如果这个HTML页面是一个格式良好的XML文档。
根据你所了解的“节点”…
//*
选择文档中的所有元素。
/descendant-or-self::node()
选择所有元素,文本节点,处理指令,注释节点和根节点。
//text()
选择文档中的所有文本节点。
//comment()
选择文档中的所有注释节点。
//processing-instruction()
选择文档中的所有处理指令。
//@*
选择文档中的所有属性节点。
//namespace::*
选择文档中的所有命名空间节点。
最后,您可以使用union(|)运算符组合任何上述表达式。
因此,我相信以下表达式真正选择任何XML文档的“所有节点”:
/descendant-or-self::node() | //@* | //namespace::*