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

decodeURIComponent("%") ----->Uncaught URIError: URI malformed

decodeURIComponent("%25") ----->%

  

decodeURLComponent(escape(’%’))

  

posted @ 2016-09-03 16:49  顺其自然²º¹?  阅读(8282)  评论(0编辑  收藏  举报