xpath中是否有某种css多重选择器(逗号),这样我就可以在一个查询中找到fetch,比如//img//*[@background]元素?

最佳答案

xpath中有一个or运算符(|):

//img|//*[@background]

09-17 13:36