예
그것을 인코딩 후 URI를 디코딩 :
var uri = "http://w3ii.com/my test.asp?name=stale&car=saab";
var
uri_enc = encodeURIComponent(uri);
var uri_dec = decodeURIComponent(uri_enc);
var res = uri_enc + "<br>" +
uri_dec;
입술의 결과는 다음과 같습니다
http%3A%2F%2Fw3ii.com%2Fmy%20test.asp%3Fname%3Dst%C3%A5le%26car%3Dsaab
// Encoded URI
http://w3ii.com/my test.asp?name=stale&car=saab // Decoded URI
»그것을 자신을 시도 정의 및 사용
decodeURIComponent () 함수는 URI 성분을 디코딩한다.
팁 : 사용 에 encodeURIComponent () 는 URI 구성 요소를 인코딩하는 기능.
브라우저 지원
기능 | |||||
---|---|---|---|---|---|
decodeURIComponent() | 예 | 예 | 예 | 예 | 예 |
통사론
decodeURIComponent( uri )
매개 변수 값
Parameter | Description |
---|---|
uri | Required. The URI to be decoded |
기술적 세부 사항
반환 값 : | 디코딩 된 URI를 나타내는 문자열, |
---|
자바 스크립트 전역 함수