当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript parseFloat() 方法

JavaScript
JS数学对象参考
JS字符串对象参考
JS函数参考
JS事件参考
Javascript 常用正则表达式
FF和IE下的js兼容性问题
jQuery 简单介绍
jQuery / 核心 / $(expression, [context] ) 函数
jQuery / 核心 / $(html) 函数
如何使用JS来判断浏览器类型(ie、firefox,等等)
Javascript在IE和FireFox中的不同表现
3个js字符编码函数区别
javascript 中的 XMLDOM 对象

JavaScript parseFloat() 方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 474 ::
收藏到网摘: n/a

Definition and Usage
定义与用法

The parseFloat() function parses a string and returns a floating point number.
parseFloat()方法用于将一个字符串转换为浮点形数字。

This function determines if the first character in the specified string is a number. If it is, it parses the string until it reaches the end of the number, and returns the number as a number, not as a string.
本方法取决于字符串的首字符是否为数字。如果是,则执行到第一个非数字字符时结束,并将结果返回为数字。

Syntax
语法

parseFloat(string)

Parameter
参数
Description
注释
string
字符串
Required. The string to be parsed
必选项。所要转换的字符串


Tips and Notes
注意

Note: Only the first number in the string is returned!
注意:只返回第一个连续的数字。

Note: Leading and trailing spaces are allowed.
注意:字符串可以包含空格。

Note: If the first character cannot be converted to a number, parseFloat() returns NaN.
注意:如果字符串的首字符不能被转换为数字,则返回NaN。


Example
实例

In this example we will use parseFloat() to parse different strings:
在下面的例子中,我们将演示如何用parseFloat()来转换不同的字符串:

<script type="text/javascript">
document.write(parseFloat("10") + "<br />") 
document.write(parseFloat("10.00") + "<br />")
document.write(parseFloat("10.33") + "<br />")
document.write(parseFloat("34 45 66") + "<br />")
document.write(parseFloat(" 60 ") + "<br />")
document.write(parseFloat("40 years") + "<br />")
document.write(parseFloat("He was 40") + "<br />")
</script>

The output of the code above will be:
输出结果为:

10
10
10.33
34
60
40
NaN


Try-It-Yourself Demos
互动演练

parseFloat()
How to use parseFloat() to parse different strings.
如何用parseFloat()转换不同的字符串。

评论 (0) All

登陆 | 还没注册?