jquery 通过 toFixed 保留两位小数

<script>
var num = 12.21654;
console.log(num.toFixed(2))
</script>
05-02 02:10