我有一个传递给URL参数的值,原始值如下所示:
1436641259169/nDfmDmVa
当它被传递时,它将其转换为:
1436641259169%252FnDfmDmVa
那么,当我把它拉下来时怎么办呢?
答案 0 :(得分:4)
这可能会对您有所帮助:decodeURIComponent
decodeURIComponent(string);
示例:
decodeURIComponent(decodeURIComponent("1436641259169%252FnDfmDmVa"))
> "1436641259169/nDfmDmVa"