decodeURIComponent1 엔코딩/디코딩 함수 1. escape(), unescape() ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890@*-_+./ 위 문자를 제외한 모든 문자를 %XX 형태로 변환한다.…2. encodeURI(), decodeURI() escape()와 동일한 변환을 한다. 단, :;/=?& 는 변환하지 않는다.…3. encodeURIComponent(), decodeURIComponent() :;/=?& 까지 포함해서 변환을 한다. 인터넷 주소를 한의 변수에 담을 때, 사용 가능ㅎ다. encodeURIComponent()를 사용하는 것은 UTF-8로 인코딩하는 것과 같다.…* java.net.URLEncoder는 encodeURI()와 동일한 기능을 한다. 단, U.. 2014. 1. 17. 이전 1 다음