Equivalent of python's int('hex-string', 16) in Javascript?
Possible Duplicate:
How to convert decimal to hex in JavaScript?
javascript中是否有与python的int(‘hex-string’,16)函数等效的函数?
- yourNumber = parseInt(hexString, 16);
- 对不起,复制品。
您可以使用parseInt():
1
| var result = parseInt("0x42", 16); // 66 |
- 如果放置0x,可以省略基数:parseInt("0x42")。