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

web页面全角《》

时间:2016-10-28 03:33:19      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:arc   编码   cti   i++   获取   页面   toc   turn   var   

 

根据Unicode编码,全角空格为12288,半角空格为32 ;

其他字符半角(33-126)与全角(65281-65374)的对应关系是:均相差65248 

  • 全角-->半角函数 
//全角转换为半角函数 
function ToCDB(str) { 
    var tmp = ""; 
    for(var i=0;i<str.length;i++) {
     var code = str.charCodeAt(i);//获取当前字符的Unicode编码 if(code>=65281 && code<=65373) { tmp += String.fromCharCode(str.charCodeAt(i)-65248); } else { tmp += String.fromCharCode(str.charCodeAt(i)); } } return tmp }
  • 半角-->全角函数

web页面全角《》

标签:arc   编码   cti   i++   获取   页面   toc   turn   var   

原文地址:http://www.cnblogs.com/drubber/p/6006067.html

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