일상다반사

블로그 도메인이 바뀌었을때 해결하는 스크립트

Qhtlr 2008. 3. 19. 09:24

http://metaman.tistory.com/281


http://hompy.info/332

<script>
function switch_page(src, dest){
  var url = location.href.replace(src,dest);
  location.replace(url);
}
function go_mypage() {
  switch_page('www.hompydesign.com/tt','hompy.info');
}
setTimeout("go_mypage()",2000);
</script>

 바로 페이지가 전환되기를 희망한다면 setTimeout("go_mypage()",2000); 를 go_mypage(); 로 교체