我需要从这样的代码中提取数据:
<div class="rateCalc_InfoLine2">
<span style="font-size:12px;">
Text1 - <b><font color="red" size="2">$ 500</font></b>;
Text2 - <b><font color="red">$ 30</font></b>
</span>
</div>
所以基本上,我需要找到class30
内部2nd font tag
的span tag
值。结构是静态的,所以我不需要担心错误(只有值会改变)div tag
rateCalc_InfoLine2
30
我知道要像这样获得 div 的价值:
$(".rateCalc_InfoLine2").html();
但是如何获得我需要的特定的?
回答:$(".rateCalc_InfoLine2 font").eq(1).html().replace('$ ', '');