<html> <head> <title>날림방지</title>
<script> onbeforeunload=function() { if(test.content.value!=0) { return "- 현재 작성중인 글이 있습니다.\n\n- 다른 페이지로 이동하시면 작성중인 글이 모두 소실됩니다."; } } </script>
</head>
<body>
<form name="test" action="#" method="post"> <textarea name="content" style="width:400px; height:200px;"></textarea> </form> | |