-1

我还是个新手,所以请多多包涵……

我正在尝试使用 importxml 公式从零售网站获取最新价格。价格在源代码中以纯文本显示,如下所示。

    <tr id="itemDetailsDiv">
      <td colspan="2" align="left" style="display: table; width: 100%; padding: 0px;">
        <table width="100%" cellspacing="0" cellpadding="0" border="0">
          <tr valign="top">
            <td id="sellTitle" class="productInfoCat priceInfo bold right">WeSell for</td>
            <td id="Asellprice" class="productInfo priceInfo sellPrice">£8.00</td>
          </tr>
          <tr style="display: none;">...</tr>
          <tr valign="top">...</tr>
          <tr valign="top">...</tr>
          <tr valign="top" class="greenBtmBordr top" style="border-bottom: 0px;">...</tr>
        </table>
      </td>
    </tr>

我特别想提取的是“8.00 英镑”的文字,并且我使用以下 xpath 查询。

    "//span[@id='Asellprice']/text()"

显然我在某个地方出错了,但我非常业余,我看不出问题所在。如果您需要更多信息,请告诉我。

谢谢 :)

4

1 回答 1

0

我相信正确的 xpath 应该是这样的。

//td[@id='Asellprice']
于 2018-08-07T12:52:46.033 回答