码迷,mamicode.com
首页 > Web开发 > 详细

js unicode处理

时间:2017-08-04 12:52:14      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:script   class   nbsp   setvalue   --   val   java   char   log   

//岗位详细界面
var str="1、\u000D\u21B52、\u000D\u21B53";

var pad = function() {
 var tbl = [];
 return function(num, n) {
  var len = n-num.toString().length;
  if (len <= 0) return num;
  if (!tbl[len]) tbl[len] = (new Array(len+1)).join(‘0‘);
  return tbl[len] + num;
 }
}();

setValue_Instructions(str);

console.log(str)
console.log("---------------------")
console.log(getValue_Instructions());


 "\u21B5".charCodeAt(0).toString(16)
--------------------------------------------------------------

 "\u21B5".charCodeAt(0).toString(16)



String.fromCharCode(72,69,76,76,79)

 

js unicode处理

标签:script   class   nbsp   setvalue   --   val   java   char   log   

原文地址:http://www.cnblogs.com/gaocong/p/7284265.html

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