decodeURIComponent() -- 对 encodeURIComponent 函数编码的 URI 进行解码
decodeURIComponent( URIstring );
URIstring -- 字符串,含有编码 URI 组件或其他要解码的文本。
URIstring 的副本,其中的十六进制转义序列将被它们表示的字符替换。
var s = "https://github.com/Graybobo",
s = encodeURIComponent( s );
console.log( s );
console.log( decodeURIComponent( s ) );
>>>
https%3A%2F%2Fgithub.com%2FGraybobo
https://github.com/Graybobo