使用jquery格式化值

时间:2015-03-18 10:50:33

标签: javascript jquery

我正在尝试格式化跨度内的文本。但是,它不起作用。

这是我的HTML

<span class="formatAmount">00000001.00</span>

我的jquery代码

$('.formatAmount').find('span').each(function(i) {
    if($.isNumeric($(this).text()))
    {
        $(this).text(getFormattedAmount($(this).text()));
    }
});

它不会首先进入这个循环。代码中有什么问题?

提前致谢

2 个答案:

答案 0 :(得分:5)

.formatAmount 没有孩子。你不是说:

$('span.formatAmount').each(function(i) {

答案 1 :(得分:1)

$('.formatAmount').each(function(i) {
if($.isNumeric($(this).text()))
{
    $(this).text(getFormattedAmount($(this).text()));
}
});