标签: javascript optimization
function toZero1(t) { return ("" + t).length < 2 ? "0" + ("" + t) : ("" + t); } function toZero2(t) { return "00".slice(("" + t).length) + ("" + t); }
这些功能可以: “6” - &GT; “06” “11” - &GT; “11” 等