美文网首页
xpath 小技巧

xpath 小技巧

作者: 裴general | 来源:发表于2018-10-31 14:07 被阅读0次

    选择兄弟节点
    选择前N位的div标签
    preceding-sibling::div[N]
    选择后N位的div标签
    following-sibling::div[N]
    选择上一级
    ../
    结合使用
    //td[text()='xxx']/../followingsibling::tr//tbody//td[contains(@class, p15)]/table/tbody

    排除一个属性的节点
    //tbody/tr[not(@class)]
    //tbody/tr[not(@class or @id)]

    选择一个有某个属性的元素
    //div[@name]


    作者:ZincZhang
    来源:CSDN
    原文:https://blog.csdn.net/zinczhang/article/details/80248297
    版权声明:本文为博主原创文章,转载请附上博文链接!

    相关文章

      网友评论

          本文标题:xpath 小技巧

          本文链接:https://www.haomeiwen.com/subject/odlatqtx.html