标签: jquery numberformatter
我安装了jQuery numberformatter-plugin,但是没有让它正常工作。我无法在网上找到正确的命令。
我想格式化文本字段的值,该字段包含带有两位小数的数字 地方(如0.16),显示4位小数(0.1600)。
答案 0 :(得分:0)
您不需要任何插件:
var value = value.toFixed(4); // Cuts number to 4 decimal places (doesn't do rounding)