Contents

Views 7245 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

이렇게 인코딩 해야 됨 ㅋㅋ

<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
No. Category Subject Author Date Views
597 Develop [unix] Java 애플릿용 HTML 자동 생성 hooni 2014.02.19 8268
596 Develop [c] selec()를 이용한 입출력 다중화 file hooni 2013.04.23 8272
595 Develop [c] 문자열 정렬 함수 qsort() hooni 2003.04.23 8274
594 Develop [c++] 현승이가 준 메신저 소스.. ㅋㅋ file hooni 2013.04.23 8299
593 Develop [c++] 레지스트리 편집하는 부분..ㅡㅡ; file hooni 2013.04.23 8304
592 Develop [c] 이진트리(binary tree)의 운행.. hooni 2003.04.23 8309
591 Develop [swift] NotificationCenter 간단 예제 file hooni 2021.01.27 8339
590 Develop [js] selectbox 선택 후 input 박스에 적용 hooni 2013.04.23 8347
589 Develop [js] 쿠키(cookie)에 대한 설명과 예제.. hooni 2003.04.23 8351
588 Develop [c] 암호 알고리즘 소스.. file hooni 2013.04.23 8352
587 Develop [c] 콘솔에서 패스워드 입력시 문자 보이지 않게 하는 코드 file hooni 2013.04.23 8359
586 Develop [java] 채팅 프로그램.. swing 사용.. file hooni 2013.04.23 8371
Board Pagination Prev 1 ... 44 45 46 47 48 49 50 51 52 53 ... 98 Next
/ 98