728x90
<script type="text/javascript">document.writeln(location.href);</script>
우리가 써야할 코드
<script type="text/javascript">document.writeln(location.href);</script>
<sc--></--sc>는 빼고
document.writeln(location.href);
원리는 아주 간단하다.
document.writeln 은 java에서 System.out,println과 같은 기능을 하는 출력문이다.
그리고 페이지 주소가 담겨있는 기본값 location.href 을 불러 출력하는것일 뿐이다.
일단 한번 적용해보았다.
원래 http://hsol.tistory.com[글 번호] 였던 url이
<script type="text/javascript">document.writeln(location.href);</script>
로 바꾸었다.
바뀜에 담긴 의미는
야매로 주소를 출력하던 것을 전문적으로 바꿨다고 해야할까
쓸데없는 교체지만 어떻게보면 나름대로 큰의미가 있다.
스킨 미리보기화면에서 스킨미리보기 창 주소가 뜨는것도 볼 수있고
동일한 글이지만 카테고리 전체보기를 했을때엔 카테고리 주소가 뜨고,
글을 단독으로 클릭했을때엔 게시글 주소가 뜬다.
일단 게시글의 주소는 원상복귀시키고.
하단에 footer영역에 집어넣었다.
완성.
<script type="text/javascript">document.writeln(location.href);</script>
'it > programming' 카테고리의 다른 글
[JAVA] 다이어터 (0) | 2013.05.08 |
---|---|
[JAVA] 메소드 생성자 사용 League of Legends 상점구현 (0) | 2013.04.20 |
[JAVA] 메소드와 생성자를 이용한 가상 DB 관리 (0) | 2013.04.17 |