获取具有 "itemtype" 属性的元素的 XPath
XPath to get an element that does have the "itemtype" attribute
我需要在 html 页面中搜索微数据,我想搜索具有 "itemtype" 属性的元素。
元素可以是:
<div itemtype="...">
或:
<strong itemtype="...">
我不知道我必须搜索哪些元素,我只知道它们必须具有 "itemtype" 属性。
我发现了这样的东西:
(/bookstore/book[@itemtype='US'])[1]
但在我的例子中,我不知道元素的名称和属性的值。
我怎样才能知道?谢谢
要查找所有具有 itemtype
属性的元素,您可以使用此 XPath 表达式:
//*[@itemtype]
我需要在 html 页面中搜索微数据,我想搜索具有 "itemtype" 属性的元素。
元素可以是:
<div itemtype="...">
或:
<strong itemtype="...">
我不知道我必须搜索哪些元素,我只知道它们必须具有 "itemtype" 属性。
我发现了这样的东西:
(/bookstore/book[@itemtype='US'])[1]
但在我的例子中,我不知道元素的名称和属性的值。
我怎样才能知道?谢谢
要查找所有具有 itemtype
属性的元素,您可以使用此 XPath 表达式:
//*[@itemtype]