//岗位详细界面
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)

 

相关文章:

  • 2021-07-22
  • 2021-10-07
  • 2022-12-23
  • 2022-01-31
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案