다음은 JavaScript에서 양식의 저장되지 않은 변경 사항에 대한 경고를 표시하는 코드입니다 -
예시
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } input { margin: 10px; } </style> </head> <body onbeforeunload="return pageUnload()"> <h1>Alert for unsaved changes in form</h1> <form> Username <input type="text" /> <br /> Password <input type="password" /><br /> <button type="submit">SUBMIT</button> </form> <br /> <script> function pageUnload() { return "The data on this page will be lost if you leave"; } </script> </body> </html>
출력
새로고침 버튼을 클릭하면 다음 경고가 표시됩니다 -