Number.parseFloat
Number.parseFloat
Number.parseFloat()
方法可以把一个字符串解析成浮点数。该方法与全局的parseFloat()
函数相同,并且处于 ECMAScript 6 规范中(用于全局变量的模块化)。
语法
Number.parseFloat(string)
参数
string
被解析的字符串。
返回值
从给定的字符串解析的浮点数。如果第一个字符不能转换为数字,则返回NaN
。
描述
请移步全局函数parseFloat()
页面查看更多的解释和示例。
Polyfill
Number.parseFloat = parseFloat;
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Number.parseFloat' in that specification. | Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262)The definition of 'Number.parseFloat' in that specification. | Draft | |
浏览器兼容性
Feature | Chrome | Firefox | Edge | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic Support | (Yes) | 25 | (Yes) | (No) | (Yes) | 9 |
Feature | Android | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | 25 | (No) | (Yes) | 9 |