Contents

조회 수 7225 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
585 Develop [ios] 비디오,네트워크,소셜로그인 테스트 file hooni 2017.04.04 697
584 Develop [ios] 비동기 블럭 코드 예제 hooni 2014.11.21 825
583 Develop [ios] 배열(NSArray) 연산과 간단한 애니메이션(split images) hooni 2013.10.31 45455
582 Develop [ios] 미스터피자(Mr.pizza) 어플 file hooni 2013.04.23 42633
581 Develop [ios] 문자열로 함수 실행하기 (eval 함수처럼) hooni 2015.02.10 860
580 Develop [ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기 hooni 2015.02.10 958
579 Develop [ios] 로컬에 있는 html 실행하기 hooni 2015.02.10 1035
578 Develop [ios] 디렉토리 하하하.. hooni 2013.04.23 32633
577 Develop [ios] 동영상 플레이어 샘플 (for Remote Url) file hooni 2017.02.07 1650
576 Develop [ios] 동영상 플레이어 샘플 (for PIP Player) file hooni 2017.03.15 1272
575 Develop [ios] 동영상 플레이어 샘플 (for Local File) file hooni 2017.02.07 1079
574 Develop [ios] 네트워크 인디케이터(NetworkActivityIndicator) 작동 file hooni 2014.01.24 12493
Board Pagination Prev 1 ... 45 46 47 48 49 50 51 52 53 54 ... 98 Next
/ 98