<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Password Protected Page</title> </head> <body> <script type="text/javascript"> function checkPassword() { var password = prompt('请输入密码:', ''); if (password === '你的密码') { // 替换'你的密码'为实际设定的密码 alert('密码正确,欢迎访问!'); // 在这里可以添加允许访问的网页内容或跳转到其他页面 document.write('<h1>欢迎来到受保护的页面!</h1>'); } else { alert('密码错误!'); history.go(-1); // 或者重新调用checkPassword()函数以允许重新输入密码 } } checkPassword(); // 页面加载时立即调用函数 </script> </body> </html>
标签:alert,密码,checkPassword,test,password,页面 From: https://www.cnblogs.com/cheflone/p/18359843