欢迎访问服务器技术网-www.fuwuqijishu.com

JavaScript decodeURIComponent() 函数

JavaScript fuwuqijishu 2年前 (2022-09-04) 26次浏览 0个评论 扫描二维码
文章目录[隐藏]

JavaScript decodeURIComponent() 函数

JavaScript 全局函数


定义和用法

decodeURIComponent() 函数可对 encodeURIComponent() 函数编码的 URI 进行解码。

提示:使用 encodeURIComponent() 方法可以对 URI 进行编码。

语法

decodeURIComponent(uri)

参数 描述
uri 必需。一个字符串,含有编码 URI 组件或其他要解码的文本。


浏览器支持

所有主要浏览器都支持 decodeURIComponent() 函数


实例

实例

使用 decodeURIComponent() 对编码后的 URI 进行解码:

var uri="https://www.runoob.com/my test.php?name=ståle&car=saab";
var uri_encode=encodeURIComponent(uri);
document.write(uri_encode);
document.write("<br>");
document.write(decodeURIComponent(uri_encode));

以上实例输出结果:

https%3A%2F%2Fwww.runoob.com%2Fmy%20test.php%3Fname%3Dst%C3%A5le%26car%3Dsaab
https://www.runoob.com/my test.php?name=ståle&car=saab

JavaScript 全局函数

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2315.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900