Xidel:如何打印节点而不是值?
Xidel: How to printout the node instead of the value?
html 示例:
<p class="si-price" data-price="910000.00">Rp 910.000</p>
所以在 xidel 中,我这样做:
xidel -se '(//p[@class="si-price"])[1]' 'https://www.anekalogam.co.id/id'
我想要的是 910000
,它在 data-price
而不是 Rp 910.000
我可以这样做吗?
尝试将其更改为:
xidel -se '(//p[@class="si-price"])/@data-price' 'https://www.anekalogam.co.id/id'
输出:
905000.00
1750000.00
2595000.00
4300000.00
8550000.00
21250000.00
42400000.00
84000000.00
html 示例:
<p class="si-price" data-price="910000.00">Rp 910.000</p>
所以在 xidel 中,我这样做:
xidel -se '(//p[@class="si-price"])[1]' 'https://www.anekalogam.co.id/id'
我想要的是 910000
,它在 data-price
而不是 Rp 910.000
我可以这样做吗?
尝试将其更改为:
xidel -se '(//p[@class="si-price"])/@data-price' 'https://www.anekalogam.co.id/id'
输出:
905000.00
1750000.00
2595000.00
4300000.00
8550000.00
21250000.00
42400000.00
84000000.00