VBScript 函数参考手册
Round 函数可对数字进行四舍五入。
Round(expression[,numdecimalplaces])
dim x x=24.13278 document.write(Round(x))
输出:
24
dim x x=24.13278 document.write(Round(x,2))
24.13
Search: