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

cookie中文转码

时间:2017-03-08 11:28:33      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:blog   log   case   ace   asc   str   rip   highlight   pre   

//cookie中文转码
var GB2312UnicodeConverter = { //转码
ToUnicode: function(str) { //中文转unicode
return escape(str).toLocaleLowerCase().replace(/%u/gi, ‘\\u‘);
},
ToGB2312: function(str) { //unicode转中文
return unescape(str.replace(/\\u/gi, ‘%u‘));
}
};

  

cookie中文转码

标签:blog   log   case   ace   asc   str   rip   highlight   pre   

原文地址:http://www.cnblogs.com/AaronNotes/p/6518041.html

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