商品ページに税込価格を表示したいのですが。価格は [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>