JavaScript encodeURIComponent()
示例
编码 URI
let uri = "https://w3schools.com/my test.asp?name=ståle&car=saab";
let encoded = encodeURIComponent(uri);
自己尝试 »
描述
encodeURIComponent()
方法 **编码** URI 组件。
encodeURIComponent()
方法对特殊字符进行编码,包括:, / ? : @ & = + $ #
注意
使用 decodeURIComponent() 函数 **解码** 编码的 URI 组件。
另请参阅
使用 encodeURI() 方法编码 URI
使用 decodeURI() 方法解码 URI
语法
encodeURIComponent(uri)
参数
参数 | 描述 |
uri | 必需的。 要编码的 URI。 |
返回值
类型 | 描述 |
字符串 | 编码后的 URI。 |
浏览器支持
encodeURIComponent()
是 ECMAScript1 (ES1) 特性。
ES1 (JavaScript 1997) 在所有浏览器中得到完全支持。
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 是 |