在jQuery中设置数字格式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在jQuery中设置数字格式相关的知识,希望对你有一定的参考价值。

30 minutes spent on this :)
  1. $.fn.priceFormat = function (options) {
  2.  
  3. var defaultOptions = {
  4. groupSeparator: ",",
  5. decimalSeparator: "."
  6. }
  7.  
  8. // default options
  9. options = $.extend({}, defaultOptions, options);
  10.  
  11. var formatValue = function (val) {
  12. if (isNaN(val)) return 0.00;
  13. val = Number(val).toFixed(2);
  14.  
  15. var p = String(val).split(options.decimalSeparator);
  16.  
  17. var intPart = "";
  18.  
  19. for (var i = 3, t = p[0].length; i < t + 3; i+= 3) {
  20. intPart = p[0].slice(-3) + options.groupSeparator + intPart;
  21. p[0] = p[0].substring(0, t-i);
  22. console.log(intPart);
  23. }
  24.  
  25. // remove extra comma,
  26. p[0] = intPart.substring(0, intPart.length-1);
  27.  
  28. return p.join(options.decimalSeparator);
  29. }
  30.  
  31. this.each(function (i, e) {
  32. e = $(e);
  33. if ($.inArray(e.attr("tagName"), ["INPUT", "TEXTAREA"]) !== -1) {
  34. e.val(formatValue(e.val()));
  35. } else {
  36. e.text(formatValue(e.text()));
  37. }
  38. });
  39.  
  40. return this;
  41. }
  42.  
  43. $("input, span").priceFormat();

以上是关于在jQuery中设置数字格式的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 pandastable 在表格中设置数字格式

vscode中设置vue代码片段

在ActionScript中设置数字格式

如何在android的片段中设置应用程序上下文?

在 Altair 中设置条形图上的标签格式

如何在 MS Access 中设置相同的显示格式