Contents

Views 8521 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
445 Develop [js] 사라지는 브라우저 hooni 2003.04.23 8417
444 Develop [html] 메타태그 사용예.. 은지나 바라~ hooni 2003.04.23 8405
443 Develop [c][java] 소켓 프로그래밍(채팅 서버 C, 클라이언트 Java) file hooni 2003.04.23 8400
442 Develop [js] 자바스크립트와 정규표현식 메뉴얼 (chm 형식) file hooni 2013.04.23 8385
441 Develop [c] kmp 활용 search file hooni 2013.04.23 8385
440 Develop [php] 무조건 다운로드 받도록 header 세팅 file hooni 2013.04.23 8383
439 Develop [c] 시간(요일,날짜 포함) 출력하는 프로그램 초간단 코드 hooni 2013.04.23 8379
438 Develop [asp] 폼 메일 소스 file hooni 2013.04.23 8379
437 Develop [php] gd 프로그램.. htm 파일.. ㅋㅋ file hooni 2013.04.23 8364
436 Develop [c] 단기과정[01/10] 과제.. swap(any data, ..) file hooni 2003.04.23 8363
435 Develop [c] 가변인자 함수(printf와 같은..) hooni 2013.04.23 8362
434 Develop [c] 단기과정[01/06] sizeof, 실수표현, 메모리, 연산자 hooni 2003.04.23 8361
Board Pagination Prev 1 ... 57 58 59 60 61 62 63 64 65 66 ... 99 Next
/ 99