javascript parseInt与Number函数的区别


Posted in Javascript onJanuary 21, 2010

但是parseInt("08", 10)是可以返回8的。

为搞清楚两者的区别,

参考了别人写的parseInt&Number的区别:

parseInt
Parses a string argument and returns an integer of the specified radix or base.
核心函数
实现版本 Navigator 2.0: If the first character of the string specified in parseInt(string) cannot be converted to a number, returns "NaN" on Solaris and Irix and 0 on all other platforms.Navigator 3.0, LiveWire 2.0: Returns "NaN" on all platforms if the first character of the string specified in parseInt(string) cannot be converted to a number.

语法
parseInt(string,radix)
参数
string A string that represents the value you want to parse.
radix (Optional) An integer that represents the radix of the return value.

描述
The parseInt function is a built-in JavaScript function.
The parseInt function parses its first argument, a string, and attempts to return an integer of the specified radix (base). For example, a radix of 10 indicates to convert to a decimal number, 8 octal, 16 hexadecimal, and so on. For radixes above 10, the letters of the alphabet indicate numerals greater than 9. For example, for hexadecimal numbers (base 16), A through F are used.

If parseInt encounters a character that is not a numeral in the specified radix, it ignores it and all succeeding characters and returns the integer value parsed up to that point. parseInt truncates numbers to integer values.

If the radix is not specified or is specified as 0, JavaScript assumes the following:

If the input string begins with "0x", the radix is 16 (hexadecimal).

If the input string begins with "0", the radix is eight (octal).

If the input string begins with any other value, the radix is 10 (decimal).
If the first character cannot be converted to a number, parseInt returns "NaN".
For arithmetic purposes, the "NaN" value is not a number in any radix. You can call the isNaN function to determine if the result of parseInt is "NaN". If "NaN" is passed on to arithmetic operations, the operation results will also be "NaN".

示例
The following示例 all return 15:
parseInt("F", 16)
parseInt("17", 8)
parseInt("15", 10)
parseInt(15.99, 10)
parseInt("FXX123", 16)
parseInt("1111", 2)
parseInt("15*3", 10) The following示例 all return "NaN":

parseInt("Hello", 8)
parseInt("0x7", 10)
parseInt("FFF", 10) Even though the radix is specified differently, the following示例 all return 17 because the input string begins with "0x".

parseInt("0x11", 16)
parseInt("0x11", 0)
parseInt("0x11")
-----------------------------------------------
-----------------------------------------------
将指定对象转换为数字。
核心函数
实现版本 Navigator 4.0, Netscape Server 3.0

语法
Number(obj)
参数
obj 一个对象。

描述
如果对象是 Date 类型的对象,Number 将返回自格林威治标准时间 1970 年 1 月 1 日起已经经过的毫秒数,在此日期之后的是正数,之前的是负数。
如果 obj 是一个没有数字格式的字符串,Number 将返回 NaN。

示例
下面的例子将把 Date 对象转换为数值型值:
<SCRIPT>
d = new Date ("December 17, 1995 03:24:00");
document.write (Number(d) + "<BR>");

Javascript 相关文章推荐
兼容FireFox 的 js 日历 支持时间的获取
Mar 04 Javascript
JQUERY对单选框(radio)操作的小例子
Apr 25 Javascript
JS控制伪元素的方法汇总
Apr 06 Javascript
jQuery+CSS3实现四种应用广泛的导航条制作实例详解
Sep 17 Javascript
Bootstrap框架安装使用详解
Jan 21 Javascript
Canvas实现放射线动画效果
Feb 15 Javascript
原生js实现旋转木马轮播图效果
Feb 27 Javascript
Bootstrap modal只加载一次数据的解决办法(推荐)
Nov 24 Javascript
微信小程序动画组件使用解析,类似vue,且更强大
Aug 01 Javascript
layui表格 列自动适应大小失效的解决方法
Sep 06 Javascript
Vue两种组件类型:递归组件和动态组件的用法
Aug 06 Javascript
node脚手架搭建服务器实现token验证的方法
Jan 20 Javascript
js parsefloat parseint 转换函数
Jan 21 #Javascript
jquery 防止表单重复提交代码
Jan 21 #Javascript
javascript 哈希表(hashtable)的简单实现
Jan 20 #Javascript
JS 对象介绍
Jan 20 #Javascript
JavaScript 学习笔记(十一)
Jan 19 #Javascript
9个JavaScript评级/投票插件
Jan 18 #Javascript
jQuery Flash/MP3/Video多媒体插件
Jan 18 #Javascript
You might like
php遍历目录输出目录及其下的所有文件示例
2014/01/27 PHP
Yii学习总结之安装配置
2015/02/22 PHP
PHP常用的排序和查找算法
2015/08/06 PHP
网页的分页下标生成代码(PHP后端方法)
2016/02/03 PHP
jquery+thinkphp实现跨域抓取数据的方法
2016/10/15 PHP
PHP自定义函数获取汉字首字母的方法
2016/12/01 PHP
php使用变量动态创建类的对象用法示例
2017/02/06 PHP
PHP + plupload.js实现多图上传并显示进度条加删除实例代码
2017/03/06 PHP
Jquery中显示隐藏的实现代码分析
2011/07/26 Javascript
兼容ie、firefox的图片自动缩放的css跟js代码分享
2012/01/21 Javascript
浅谈Javascript中深复制
2014/12/01 Javascript
js查找节点的方法小结
2015/01/13 Javascript
C++中的string类的用法小结
2015/08/07 Javascript
JS延时提示框实现方法详解
2015/11/26 Javascript
jQuery Easyui Treegrid实现显示checkbox功能
2017/08/08 jQuery
详解使用路由延迟加载 Angular 模块
2017/10/12 Javascript
vue数据控制视图源码解析
2018/03/28 Javascript
vue权限管理系统的实现代码
2019/01/17 Javascript
Layer UI表格列日期格式化及取消自动填充日期的实现方法
2020/05/10 Javascript
用Python的urllib库提交WEB表单
2009/02/24 Python
Python远程桌面协议RDPY安装使用介绍
2015/04/15 Python
centos 安装python3.6环境并配置虚拟环境的详细教程
2018/02/22 Python
Python使用pip安装pySerial串口通讯模块
2018/04/20 Python
Anaconda下配置python+opencv+contribx的实例讲解
2018/08/06 Python
python将邻接矩阵输出成图的实现
2019/11/21 Python
python编程进阶之异常处理用法实例分析
2020/02/21 Python
Jupyter 无法下载文件夹如何实现曲线救国
2020/04/22 Python
jupyter使用自动补全和切换默认浏览器的方法
2020/11/18 Python
python将YUV420P文件转PNG图片格式的两种方法
2021/01/22 Python
CSS3实现任意图片lowpoly动画效果实例
2017/05/11 HTML / CSS
英国花园家具中心:Garden Furniture Centre
2017/08/24 全球购物
老板电器官方购物商城:老板油烟机、燃气灶、消毒柜、电烤箱
2018/05/30 全球购物
招标承诺书
2014/08/30 职场文书
水利专业大学生职业生涯规划书范文
2014/09/17 职场文书
某集团股份有限公司委托书样本
2014/09/24 职场文书
感谢信范文大全
2015/01/23 职场文书