decodeURI
decodeURI()
函数解码一个由encodeURI
先前创建的统一资源标识符(URI)或类似的例程。
语法
decodeURI(encodedURI)
参数
encodedURI一个完整的编码过的 URI
返回值
表示给定编码的URI的未编码版本。
异常
URIError
,当encodedURI
包含无效的字符序列时抛出一个(“格式不正确的URI序列”)异常。
描述
将已编码 URI 中所有能识别的转义序列转换成原字符,但不能解码那些不会被 encodeURI
编码的内容(例如 "#
")。
示例
解码一个西里尔字母(Cyrillic)URL
decodeURI('https://developer.mozilla.org/ru/docs/JavaScript_%D1%88%D0%B5%D0%BB%D0%BB%D1%8B');
// "https://developer.mozilla.org/ru/docs/JavaScript_шеллы"
捕获异常
try {
var a = decodeURI('%E0%A4%A');
} catch(e) {
console.error(e);
}
// URIError: malformed URI sequence
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 3rd Edition (ECMA-262) | Standard | Initial definition. |
ECMAScript 5.1 (ECMA-262)The definition of 'decodeURI' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'decodeURI' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262)The definition of 'decodeURI' in that specification. | Living Standard | |
浏览器兼容性
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
本文档系腾讯云开发者社区成员共同维护,如有问题请联系 cloudcommunity@tencent.com