js编码问题如何将%b1%b1%be%a9转化为北京

a550759049 2010-08-17 02:10:44
<script type="text/javascript">
str = "%b1%b1%be%a9";
alert(str); //如何显示北京
</script>
...全文
529 6 打赏 收藏 转发到动态 举报
写回复
用AI写文章
6 条回复
切换为时间正序
请发表友善的回复…
发表回复
thqtanghequn 2010-08-17
  • 打赏
  • 举报
回复
太强了 收藏了
yixianggao 2010-08-17
  • 打赏
  • 举报
回复
[Quote=引用 4 楼 a550759049 的回复:]
谢谢,太棒了。
请问IDecodeURIGb(pe, [CP936]))第二个参数是什么意思? []代表什么啊? 从来没有见过。
[/Quote]
CP936 是 CP936.js 中声明的变量,[]是数组的简易格式,即将参数用数组封装起来,
虽然这段代码可以运行,但是很多地方可以优化!
a550759049 2010-08-17
  • 打赏
  • 举报
回复
谢谢,太棒了。
请问IDecodeURIGb(pe, [CP936]))第二个参数是什么意思? []代表什么啊? 从来没有见过。
yixianggao 2010-08-17
  • 打赏
  • 举报
回复
[Quote=引用楼主 a550759049 的回复:]
<script type="text/javascript">
str = "%b1%b1%be%a9";
alert(str); //如何显示北京
</script>
[/Quote]
这是 GBK 编码,js 默认解码用 uft-8 编码!

昨天类似贴:
http://topic.csdn.net/u/20100816/14/9bf7ac8c-6a44-4a7d-950d-83743b336594.html
yixianggao 2010-08-17
  • 打赏
  • 举报
回复
昨天有人问中国,今天是北京!

本地用时记得下载
http://www.btbtd.org/test/sqJsTools/tools/Url/Url/CP936.js

L@_@K
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>shawl.qiu template</title>
</head>
<body>

<script type="text/javascript" src="http://www.btbtd.org/test/sqJsTools/tools/Url/Url/CP936.js"></script>
<script type="text/javascript">
/*<![CDATA[*/

var pe = "%b1%b1%be%a9";
document.write("pe: "+pe);
document.write("<br />de: "+IDecodeURIGb(pe, [CP936]));
document.write("<hr />");

function IDecodeURIGb(Source, CP936) // Pe = percent encoding; %xx[,%xx]
{ // shawl.qiu code, return string|void return; Func: fGetUtfHex
var bStr = false;
if(Source.constructor==String) Source = [Source], bStr = true;

//if(CP936==null) fFatalError("编码映射表不能为空!");

var iLBound = iUBound = 0;
iLBound = -1; iUBound = 0x7f;

Source[0] = Source[0].replace(/\+/g, " ");

var Len = Source[0].length;

for(var i=0; i<Len; i++)
{
var iIndex = Source[0].indexOf("%", i);
if(iIndex===-1) break;

var sHex = Source[0].slice(iIndex+1, iIndex+3);
var iCode = parseInt(sHex, 16);

//document.write("<br/>sHex: "+sHex);

if(iCode>-1&&iCode<=0x7f) // ascii
{
Source[0] =
[
Source[0].slice(0, iIndex)
, String.fromCharCode(iCode)
, Source[0].slice(iIndex+3)
].join("");
}
else
{
var sHexRaw = Source[0].slice(iIndex+3, iIndex+6);
//document.write("<br/>sHexRaw: "+sHexRaw);
if(sHexRaw.charAt(0)!="%") continue;
sHex += sHexRaw.slice(1);
var sUniHex = fGetUtfHex(sHex, CP936);
//document.write("<br/>sHex: "+sHex);
//document.write("<br/>sUniHex: "+sUniHex);
Source[0] =
[
Source[0].slice(0, iIndex)
, String.fromCharCode(parseInt(sUniHex, 16))
, Source[0].slice(iIndex+6)
].join("");
} // end if(iCode<-1&&iCode<0x7f)
} // end for(var i=0; i<Len; i++)

if(bStr) return Source[0];
} // end function IDecodeURIGb(Source)

function fGetUtfHex(sGbHex, CP936)
{ // shawl.qiu code, return string
sGbHex = sGbHex.toUpperCase();
var iIndex = CP936[0].indexOf(sGbHex);
if(iIndex===-1) return "0x005F";

var iBegin = iIndex+sGbHex.length+1;
return CP936[0].substring(iBegin, iBegin+6);
} // end function fGetMapTableChar(sHex)

</script>
</body>
</html>

a550759049 2010-08-17
  • 打赏
  • 举报
回复
escape encodeURI encodeURIComponent unescape decodeURI
这几个都试过了,都不好使,请问如何转换?

87,914

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 JavaScript
社区管理员
  • JavaScript
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧