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

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

decodeURIComponent("%") ----->Uncaught URIError: URI malformeddecodeURIComponent("%25") ----->%

  

decodeURLComponent(escape(’%’))

  

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