Contents

조회 수 7230 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
409 Develop [ios] iOS 8 개발자가 우선 알아야 할 3가지 file hooni 2014.10.02 957
408 Develop [ios] iOS In App Purchase #1 (코드 구현 전 웹 설정 작업) file hooni 2013.11.20 14538
407 Develop [ios] iOS In App Purchase #2 (코드 구현) file hooni 2013.11.20 13795
406 Develop [ios] iOS In App Purchase 코드 부분 샘플 1 hooni 2013.11.20 11782
405 Develop [ios] iOS In App Purchase 코드 부분 샘플 2 hooni 2013.11.20 11317
404 Develop [ios] iOS 사운드 관련 프레임워크 hooni 2014.04.18 3046
403 Develop [ios] iOS 앱 아이콘을 만드는 유틸 file hooni 2015.01.03 926
402 Develop [ios] iOS 의 인앱구매 소개 file hooni 2014.04.29 3875
401 Develop [ios] iOS앱의 Xcode 빌드 과정 file hooni 2015.01.03 2356
400 Develop [ios] iOS에서 디바이스 종류 알아오기 hooni 2014.05.24 3708
399 Develop [ios] iphone SetDeviceOrientation 화면 강제 회전 hooni 2013.11.20 18493
398 Develop [ios] libxml/tree.h file not found file hooni 2013.08.08 18753
Board Pagination Prev 1 ... 32 33 34 35 36 37 38 39 40 41 ... 71 Next
/ 71