标签: javascript math
var ts = (100-st).tofixed(2);
这不应该给我100-st的结果到最接近的小数点后第二位吗?
100-st
编辑:它始终返回值100。
答案 0 :(得分:4)
应该是
var ts = (100-st).toFixed(2)
请注意,函数名称为敏感。