阅:8 | 回:0 | 插入网页加密码访问页面源代码 |
鱼鱼 | 发表于 2024-12-23 9:48:34 |
![]()
|
<script language="javascript"> function password() { var testV = 1; var pass1 = prompt('Input password:', ''); while (testV < 3) { if (pass1 === null) { alert('Cancel login'); window.close(); // Close the window return; } if (pass1 === "host") { alert('Password is correct!'); return; } testV++; pass1 = prompt('Password incorrect! Please re-enter:'); } if (testV === 3) { alert('Three input errors!'); window.close(); // Close the window } } password(); </script> 以萌养阵,方可长命百岁。 ![]() |