我正在尝试使用Google表格中的importXML将网站上的价格作为目标。我定位的代码如下所示:

  <span class="new_price" id="final_price">£29.99</span>


因为它在类'new_price'中,所以我的导入无法正常工作:

  =importXml("http://www.hardware-ironmongers.com/details.aspx?code=7751913"; "//span[@id='final_price']")


有什么想法可以针对一个类中的ID?

干杯

最佳答案

我不是专家,但这看起来可能会让您走上正确的道路:

How to select two attributes from the same node with one expression in XPath?

09-17 07:01