number与string的转换
2019-08-14 10:10:21来源:博客园 阅读 ()
// number -> string // toString() /* var num = 10; var res = num.toString(); alert(typeof (num)); alert(typeof (res)); */ // 加一个空格 /* var num = 10; var res = num + "" alert(num + ", " + typeof (num)); alert(res + ", " + typeof (res)); */ // 使用String(数字)函数 /* var num = 10; var res = String(num); alert(num + ", " + typeof (num)); alert(res + ", " + typeof (res)); */ // 没有固定精度的表示 /* var n = 1234.56789; var s4 = n.toFixed(2); var s5 = n.toExponential(2); // 指数表示 var s6 = n.toPrecision(2); // 有效位数 alert(s4 + ", " + typeof(s4)); alert(s5 + ", " + typeof(s5)); alert(s6 + ", " + typeof(s6)); */ // string -> number // 做除了加法以外的数字运算 /* var s = "12345"; var r = s / 1; // s - 0; alert(s + ", " + typeof s); alert(r + ", " + typeof r); */ // 使用parse系方法 // parseInt() parseFloat() /* var s = "08"; var r = parseInt(s); alert(s + ", " + typeof s); alert(r + ", " + typeof r); */ // parse系方法,只识别一个字符串中开始的数字,如果识别不了就返回NaN alert(parseInt("a123abc") + 1); // 使用Number()函数
原文链接:https://www.cnblogs.com/qixianchuan/p/11156029.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- js-01-基础知识 2019-08-14
- JavaScript之数据类型转换 2019-08-14
- JavaScript 字符串(String) 大全 2019-08-14
- 数据类型转换 2019-08-14
- 字符串slice、substring、substr 2019-08-14
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash