Contents

조회 수 7237 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

이렇게 인코딩 해야 됨 ㅋㅋ

<html>

<head>

<script type="text/javascript">
function encode(){
  s = document.f.str.value;
  r = encodeURIComponent(s);
  document.f.res.value = r;
}

function decode(){
  s = document.f.str.value;
  r = decodeURIComponent(s);
  document.f.res.value = r;
}
/*
  var s;

  s = encodeURI('http://www.google.co.kr/소 설.html');
  document.write('<p>' + s + '<p>');
  // 출력 결과: http://www.google.co.kr/%EC%86%8C%20%EC%84%A4.html

  s = encodeURIComponent('http://www.google.co.kr/소 설.html');
  document.write('<p>' + s + '<p>');
  // 출력 결과: http%3A%2F%2Fwww.google.co.kr%2F%EC%86%8C%20%EC%84%A4.html


  s = escape('http://www.google.co.kr/소 설.html');
  document.write('<p>' + s + '<p>');
  // 출력 결과: http%3A//www.google.co.kr/%uC18C%20%uC124.html
*/

</script>

</head>

<body>


<form name=f>
<textarea name=str cols=70 rows=7></textarea>
<br>
<input type=button onClick=encode() value=Encode>
<input type=button onClick=decode() value=Decode>
<br>
<textarea name=res cols=70 rows=7></textarea>
</form>

</body>
</html>


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
433 Develop [ios] iOS 8 개발자가 우선 알아야 할 3가지 file hooni 2014.10.02 966
432 Develop [ios] iOS 7 이상 UIBarButtonItem 여백 file hooni 2014.03.27 4087
431 Develop [ios] iOS 6.0 이상 회전 하기 (이전 버전과 비교 변경 부분) file hooni 2014.01.27 34234
430 Develop [ios] iOS 4.0 beta 에서 3.1.3으로 다운그레이드 하는 법 file hooni 2013.04.23 37536
429 Develop [ios] In App Purchase 개발 hooni 2013.11.20 9286
428 Develop [ios] iCloud관련 저장 디렉토리 hooni 2013.04.23 29674
427 Develop [ios] IB 없이 개발하기 (html) secret hooni 2013.05.31 0
426 Develop [ios] Hybrid 앱 스터디 발표 자료 file hooni 2013.09.06 13787
425 Develop [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Swift) file hooni 2016.03.23 7597
424 Develop [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Objective-C) file hooni 2016.03.23 1740
423 Develop [ios] How to set up clang formatter hooni 2015.09.17 1461
422 Develop [ios] GPS 이용 상태 확인 hooni 2015.04.27 1405
Board Pagination Prev 1 ... 30 31 32 33 34 35 36 37 38 39 ... 71 Next
/ 71