티스토리 뷰

자바스크립트 중복 팝업 금지
<script>

check = "";

function test()
{
    if(!check.closed && check)
    {
        alert("같은 창이 이미 떠있습니다");
        return;
    }
    check = window.open("http://google.com","","width=900px,height=400px");
}
</script>

<input type="button" value="팝업" onClick="test();">