브라우저 닫기 팝업 프롬프트

2353 단어 브라우저
<script type="text/javascript">

    window.a = 0;

    var rv = " ?";

    window.onbeforeunload = function () {

        var isIE = document.all ? true : false;

        if (isIE) {

            var n = window.event.screenX - window.screenLeft;

            var b = n > document.documentElement.scrollWidth - 20;

            if (b && window.event.clientY < 0 || window.event.altKey) {

                // 

                window.event.returnValue = rv;

            }

        } else {

            if (document.documentElement.scrollWidth != 0) {

                if (window.a != 1) {

                    window.a = 0;

                    return rv;

                } else {

                    window.a = 0;

                }

            }

            else {

                window.a = 0;

                return rv;

            }

        }

    }

</script>

좋은 웹페이지 즐겨찾기