/*
* 메세지를 출력후에 이전 페이지로 되돌린다.
*/
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();
}
* 메세지를 출력후에 이전 페이지로 되돌린다.
*/
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();
}
'잼있냐JavaScript > 유용한 자바스크립트 UTIL' 카테고리의 다른 글
checkbox radio select 유용한 스크립트 7 (0) | 2008.10.22 |
---|---|
날짜 관련 스크립트 - 유용한 스크립트 5 (0) | 2008.10.22 |
쿠키 제어 -유용한 스크립트 4 (0) | 2008.10.22 |
문자열 변환 및 숫자열 변환 관련 - 유용한 스크립트 3 (0) | 2008.10.22 |
유효성검사 스크립트 - 유용한 자바스크립트 2 (0) | 2008.10.22 |