1
<p class="pd-price">
    <img alt="€" src="http://www.redcoon.es/templates/tpl/img/pd/pd-price/euro_small.png">
    <img class="offsetStandard" alt="2" src="http://www.redcoon.es/templates/tpl/img/pd/pd-price/2.png">
    <img class="offsetStandard" alt="6" src="http://www.redcoon.es/templates/tpl/img/pd/pd-price/6.png">
    <img class="offsetStandard" alt="1" src="http://www.redcoon.es/templates/tpl/img/pd/pd-price/1.png">
    <img class="offsetStandard" alt="-" src="http://www.redcoon.es/templates/tpl/img/pd/pd-price/minus_point.png">
</p>

如何为此段落编写 Xpath 以使其返回“€261-”。所有 alt 标签的组合字符串。

4

2 回答 2

1

采用

 string-join(p/img/@alt, "")

这将首先选择所有 alt 属性的文本,然后将其组合成一个字符串

于 2012-09-18T11:53:00.943 回答
0

在 Xpath 2 中,您有字符串连接

string-join(p[@class='pd-price']/img/@alt, '')
于 2012-09-18T11:53:17.263 回答