JavaScript decodeURI() 函数
最后更新于:2022-03-26 22:09:16
JavaScript decodeURI() 函数
定义和用法
decodeURI() 函数可对 encodeURI() 函数编码过的 URI 进行解码。
提示: 使用 encodeURI() 函数可以对 URI 进行编码。
语法
decodeURI(uri)
参数 | 描述 |
---|---|
uri | 必需。一个字符串,含有要解码的 URI 或其他要解码的文本。 |
浏览器支持
The decodeURI() function 所有主要浏览器都支持
实例
实例
使用 decodeURI() 对一个编码后的 URI 进行解码:
var uri="my test.php?name=ståle&car=saab";
document.write(encodeURI(uri)+ "<br>");
document.write(decodeURI(uri));
document.write(encodeURI(uri)+ "<br>");
document.write(decodeURI(uri));
以上实例输出结果:
my%20test.php?name=st%C3%A5le&car=saab my test.php?name=ståle&car=saab