关于javascript:如何获取十六进制的字符串表示?

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));
}

我会给toString()the decimal表示。我知道他是the above队列。P></


你可以试试这个

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
...