-1

这是我的代码:

<script id="quotes" type="text/x-jquery-tmpl">
    {{each(i,market) Markets}}
        <span style="margin-left:3px;">${market.Symbol}</span>&nbsp;
        <span class="lastPrice">${market.CurrentQuote.LastPrice}</span>&nbsp;
    {{/each}} 
</script>

我想要的是让 LastPrice 看起来像“3.00”。我尝试使用 jquery 的 number 函数,但无法使其工作。例如,如果我这样做:

$.number(${market.CurrentQuote.LastPrice}, 2)

它显示 $.number(3, 2) 而不是 3.00。如果我这样做,

${number($market.CurrentQuote.LastPrice, 2)}

它什么也不返回。

4

1 回答 1

-1
${ number(market.CurrentQuote.LastPrice, 2) }.

阅读这篇文章

于 2013-08-02T17:41:05.250 回答