decodeURIComponent 测试

Posted jason-beijing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了decodeURIComponent 测试相关的知识,希望对你有一定的参考价值。

  1. var test1="http://www.wljcz.com/My first/";  
  2. var nn=encodeURI(test1);  
  3. var now=decodeURI(test1);  
  4. document.write(nn+ "<br />");  
  5. document.write(now);  
  6.   
  7. var test1="http://www.wljcz.com/My first/";  
  8. var bb=encodeURIComponent(test1);  
  9. var nnow=decodeURIComponent(bb);  
  10. document.write(bb+ "<br />");  
  11. document.write(nnow);  
  12. 其运行结果为:
    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))?

decodeURIComponent(str)

js编码解码decodeURI()与decodeURIComponent()的区别

url编码有个bug,不能直接用decodeURIComponent,如果遇到前面的$会报错。

详细介绍encodeURI()encodeURIComponent()decodeURI()decodeURIComponent()使用方法

用ASP实现JS的decodeURIComponent()函数