How to get a string representation of hex?
本问题已经有最佳答案,请猛点这里访问。
本:我P></
jsfiddle.net http:/ / / / / 1 cg8gxP></
1 2 3 4 5 6 7 8 9 | for(var i = 0x00; i <= 0x88; i++){ i = i.toString(); if (i.length === 1) { i ="0" + i; } // console.log(i.length); console.log(i); // console.log(decodeURIComponent("%" + i)); } |
我会给
你可以试试这个
1 2 3 4 5 6 | for(var i = 0x00; i <= 0x88; i++){ i ="0x" + i.toString(16); console.log(i); } |
将展示
1 2 3 4 | 0x0 0x1 0x2 ... |