xpath获取A下所有的子链接: //A/child::*/@href
xpath 使用单引号,使用双引号报语法错误
(如果外部使用单引号,内部就要使用双引号,反之使用单引号)
双引号 大坑!li下或者p下包含strong标签或者其他的标签:
//ul/li/descendant::text()
//p/descendant::text()
如果一个div中包含多个class,选取其中一个的方法,用contains函数
//span[contains(@class,"vote-post-up")]
网友评论