这是我的代码:
<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 函数,但无法使其工作。例如,如果我这样做:
$.number(${market.CurrentQuote.LastPrice}, 2)
它显示 $.number(3, 2) 而不是 3.00。如果我这样做,
${number($market.CurrentQuote.LastPrice, 2)}
它什么也不返回。