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>


?

  1. [mysql] mysql user 생성시 ERROR 1364

  2. 맥에서 파일공유 (윈도우,맥)

  3. [js]모바일 웹에서 orientationchange

  4. [android] keytool을 사용하여 키스토어 생성

  5. [js] 모바일웹에서 이미지 저장하는거 (context menu) 막기

  6. [js] JSON 컨트롤.. 재귀호출로 값 출력하기

  7. [iphone] 파일 업로드 샘플 코드 ㅎㅎ

  8. [node.js] 지금 하고 있는거..

  9. [node.js] nodejs 기본 설치

  10. [iphone] 화면 전환 Portrait & Landscape Mode

  11. [iphone] performSelector:withObject:afterDelay: 에 대한 내용

  12. [ios] 디렉토리 하하하..

Board Pagination Prev 1 ... 32 33 34 35 36 37 38 39 40 41 ... 98 Next
/ 98