맛집 여행 캠핑 일상 생활

자바스크립트 URI Encode Decode 본문

JAVASCRIPT

자바스크립트 URI Encode Decode

영은파더♥ 2017. 1. 23. 12:30

자바스크립트 URI Encode Decode


URL 에 보면 한글문자나 특수문자 같은 경우는 URI 인코딩을 해서 전달합니다.

JAVASCRIPT 로 URI Encode 및 Decode 하는 방법입니다.

<script>

function myEncode() {

    var str = document.getElementById("intext").value;

    var ret = encodeURIComponent(str);

    document.getElementById("result").value = ret;

}

function myDecode() {

    var str = document.getElementById("intext").value;

    var ret = decodeURIComponent(str);

    document.getElementById("result").value = ret;

}

</script>


<input type="text" id="intext" value="">

<br>

<br>

<button onclick="myEncode()">URL Encode</button>

<button onclick="myDecode()">URL Decode</button>

<br>

<br>

<input type="text" id="result" value="">


Trackback : | Comments :