Contents

조회 수 11353 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

URL 인코딩~

<html>

<body>

<script type="text/javascript">
  var s;

  s = encodeURI('http://google.com/소 설.html');
  document.write('<p>' + s + '<p>');
  //결과 http://google.com/%EC%86%8C%20%EC%84%A4.html


  s = encodeURIComponent('http://google.com/소 설.html');
  document.write('<p>' + s + '<p>');
  //결과 http%3A%2F%2Fgoogle.com%2F%EC%86%8C%20%EC%84%A4.html


  s = escape('http://google.com/소 설.html');
  document.write('<p>' + s + '<p>');
  //결과 http%3A//google.com/%uC18C%20%uC124.html
</script>

</body>
</html>


?

  1. [js] 한글주소(URL) 인코딩(encode, Encoding), 자바스크립트(JavaScript)

  2. [js] jQuery 관련 사이트 링크 모음

  3. [js] Text 중 URL 형식을 인식해 단축 URL로 변경

  4. [php] 몽이가 준 ajax 채팅 소스 ㅋㅋ

  5. [js] jQuery 관련 문서 ㅎㅎ

  6. [js] 인터넷 주소(URL) 인코딩 ㅋㅋ

  7. [java] 날짜 계산 (Date, SimpleDateFormat)

  8. [java] 스트러츠(Struts) 세팅 ㅋㅋ

  9. [js] 파이어폭스(Firefox;F/F)에서 outerHTML 작동하도록 만든 메소드

  10. [android] ArrayAdapter 테스트 파일 ㅎㅎ

  11. [android] ArrayAdapter를 이용하여 출력하기

  12. [android] ListView+ArrayAdapter 테스트

Board Pagination Prev 1 ... 34 35 36 37 38 39 40 41 42 43 ... 71 Next
/ 71