将数值按四舍五入转换为指定位数的小数。
number (Number): 要四舍五入的数字。
[precision = 2] (Number): 四舍五入的精度。
(Number): 返回四舍五入的数字。
$t.round(0.145) // 0.15 $t.round(0.145, 3) // 0.145