码迷,mamicode.com
首页 > 其他好文 > 详细

字符之间的转换

时间:2019-08-22 23:52:21      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:div   tostring   字符   nbsp   class   转换   string   parse   bsp   

// 十进制转其他:
var num = 123;
console.log(num.toString(2));
console.log(num.toString(8));
console.log(num.toString(16));

// 其他进制转十进制:
var str = "110";
console.log(parseInt(str,2))
console.log(parseInt(str,8))
console.log(parseInt(str,16))

// 其他转其他:
var str2 = "1110";
console.log(parseInt(str2,2).toString(16))

 

字符之间的转换

标签:div   tostring   字符   nbsp   class   转换   string   parse   bsp   

原文地址:https://www.cnblogs.com/hy96/p/11397447.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!