我使用toString函数,但它有一个奇怪的行为。你可以在下面的例子中看到。
var number = 49184;// in HEX 0x00C020
number.toString(16);// it returns C020 but I need all the string with two zero at the beginning.
答案 0 :(得分:-1)
toString方法删除了本文中所写的第一个数字:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toString
希望有所帮助