gpt4 book ai didi

javascript - 使用 jquery 格式化一个值

转载 作者:行者123 更新时间:2023-11-30 08:00:40 24 4
gpt4 key购买 nike

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

这是我的html

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

我的 jquery 代码

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

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

提前致谢

最佳答案

.formatAmount 没有 child 。你不是说:

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

关于javascript - 使用 jquery 格式化一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29120032/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com