如何在倒数计时器中显示逗号?

时间:2020-09-17 17:51:52

标签: javascript css timer

我需要显示逗号,但是我很难弄清楚。有什么帮助吗? 我已经尝试了几件事,但计数却不一样,它开始时非常缓慢,位数比我需要的少得多。

$(document).ready(function () {

  $('.counter-ticker').each(function () {
    var $this = $(this),
      countTo = $this.attr('data-count');

    $({
      countNum: $this.text()
    }).animate({
        countNum: countTo
      },

      {

        duration: 3000000000,
        easing: 'linear',
        step: function () {
          $this.text(Math.floor(this.countNum));
        },
        complete: function () {
          $this.text(this.countNum);
          //alert('finished');
        }
      });
  });
});

1 个答案:

答案 0 :(得分:0)

如果要使用内置代码,则可以将toLocaleString()与minimumFractionDigits一起使用。

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString