这是我的代码:
<script id="quotes" type="text/x-jquery-tmpl">
{{each(i,market) Markets}}
<span style="margin-left:3px;">${market.Symbol}</span>
<span class="lastPrice">${market.CurrentQuote.LastPrice}</span>
{{/each}}
</script>
我想要的是使LastPrice看起来像“3.00”。我试图使用jquery的数字函数,但无法使其工作。例如,如果我这样做:
$.number(${market.CurrentQuote.LastPrice}, 2)
它显示$ .number(3,2)而不是3.00。如果我这样做,
${number($market.CurrentQuote.LastPrice, 2)}
它什么都不返回。