고수의 썸네일형 리스트형 메시지 관련 스크립트 - 유용한 스크립트 6 /* * 메세지를 출력후에 이전 페이지로 되돌린다. */ function alert_back(msg) { alert(msg); history.back(); } /* * 메세지를 출력후에 특정 페이지로 이동한다. */ function alert_location(msg, url) { alert(msg); location.href = url; } /* * 메세지를 출력후에 특정 객체를 Focus 한다. */ function alert_focus(msg, obj) { alert(msg); if(obj) obj.focus(); } 더보기 이전 1 다음