decodeURIComponent()
decodeURIComponent()
함수는 encodeURIComponent
나 비슷한 방법으로 생성된 Uniform Resource Identifier(URI) 컴포넌트를 해독합니다.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
구문
decodeURIComponent(encodedURI)
매개변수
encodedURI
- 암호화된 Uniform Resource Identifier(URI) 컴포넌트.
반환 값
이스케이프되지 않은 특정 글자들 중 새로운 문자열.
예외
잘못 사용되었을 경우 URIError
( " malformed URI sequence ") 예외를 발생시킵니다.
설명
암호화된 URI 컴포넌트에서 각각의 이스케이프 시퀀스(확장 문자열)를 자신을 나타내는 문자로 바꿉니다.
예제
키릴문자 URL 컴포넌트의 복호화
decodeURIComponent("JavaScript_%D1%88%D0%B5%D0%BB%D0%BB%D1%8B");
// "JavaScript_шеллы"
명세
Specification | Status | Comment |
---|---|---|
ECMAScript 3rd Edition (ECMA-262) | Standard | 초기 정의. |
ECMAScript 5.1 (ECMA-262) The definition of 'decodeURIComponent' in that specification. |
Standard | |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'decodeURIComponent' in that specification. |
Standard | |
ECMAScript (ECMA-262) The definition of 'decodeURIComponent' in that specification. |
Living Standard |
브라우저 호환성
BCD tables only load in the browser