본문 바로가기

잼있냐JavaScript/유용한 자바스크립트 UTIL

메시지 관련 스크립트 - 유용한 스크립트 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();
}