我正在尝试在产品页面上显示含税价格。价格显示在 [OurPrice] 中,因此我需要将显示的价格(例如 0.95 英镑)乘以 1.2 并以英镑显示价格。这是我尝试使用的代码,但是,它不显示计算出的价格。我想用数字前面的£符号显示它。
<table cellspacing="1" cellpadding="0" border="0" >
<tbody><tr>
<td class="retail-price" valign="top" nowrap="">[RetailPriceTitle]</td>
<td width="100%">[RetailPrice]</td>
</tr><tr>
<td class="our-price" valign="top" nowrap="">Our Price:</td>
<td width="100%"><span id="op">[OurPrice]</span></td>
</tr>
<tr>
<td class="incvat" valign="top" nowrap="">Inc Vat</td>
<td class="incvat">
<script type="text/jscript">
var ours = document.getElementById("op").value;
document.write (£(ours *1.2))
</script>
</td>
</tr>
</tbody>
</table>