decodeURIComponent 测试
Posted jason-beijing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了decodeURIComponent 测试相关的知识,希望对你有一定的参考价值。
- var test1="http://www.wljcz.com/My first/";
- var nn=encodeURI(test1);
- var now=decodeURI(test1);
- document.write(nn+ "<br />");
- document.write(now);
- var test1="http://www.wljcz.com/My first/";
- var bb=encodeURIComponent(test1);
- var nnow=decodeURIComponent(bb);
- document.write(bb+ "<br />");
- document.write(nnow);
-
其运行结果为:http://www.wljcz.com/My%20first/
http://www.wljcz.com/My first/http%3A%2F%2Fwww.wljcz.com%2FMy%20first%2F
http://www.wljcz.com/My first/
以上是关于decodeURIComponent 测试的主要内容,如果未能解决你的问题,请参考以下文章
为啥使用 JSON.parse(decodeURIComponent(staticString))?
js编码解码decodeURI()与decodeURIComponent()的区别
url编码有个bug,不能直接用decodeURIComponent,如果遇到前面的$会报错。
详细介绍encodeURI()encodeURIComponent()decodeURI()decodeURIComponent()使用方法