在Javascript中等效的python的int(’hex-string’,16)?

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)函数等效的函数?


您可以使用parseInt():

1
var result = parseInt("0x42", 16);  // 66