html实现一个账号密码登录的弹窗界面,代码如下,请问怎么删除掉账号只留一个密码框呢? <html> <head> <meta charset=”utf-8″> <title>账号密码弹窗</title> </head> <body> <label>账号</label><br> <input id=”user”><br> <label>密码</label><br> <input id=”password”><br><br> <button onclick=”myFunction()”>登录</button> </body> <script> function myFunction() { if (document.getElementById(“user”).value == “”) { if (document.getElementById(“password”).value == “123456”) { alert(“登录成功”); window.location.href=”祺智-彼此赋能,聚力同行_祺智”; } else { alert(“密码错误”); } } else { alert(“账号密码都错”); } } </script> </html> 两种方法,任选其一 1.隐藏输入框,其他不改变
<html> <head> <meta charset=”utf-8″> <title>账号密码弹窗</title> </head> <body> <label style=”display:none”>账号</label><br> <input style=”display:none” id=”user”><br> <label>密码</label><br> <input id=”password”><br><br> <button onclick=”myFunction()”>登录</button> </body> <script> function myFunction() { if (document.getElementById(“user”).value == “”) { if (document.getElementById(“password”).value == “123456”) { alert(“登录成功”); window.location.href=”祺智-彼此赋能,聚力同行_祺智”; } else { alert(“密码错误”); } } else { alert(“账号密码都错”); } } </script> </html> 2.将输入框删除或者注释掉,把function最外面判断去掉,代码如下 <html> <head> <meta charset=”utf-8″> <title>账号密码弹窗</title> </head> <body> <label>密码</label><br> <input id=”password”><br><br> <button onclick=”myFunction()”>登录</button> </body> <script> function myFunction() { if (document.getElementById(“password”).value == “123456”) { alert(“登录成功”); window.location.href=”祺智-彼此赋能,聚力同行_祺智”; } else { alert(“密码错误”); } } </script> </html>
2024最新激活全家桶教程,稳定运行到2099年,请移步至置顶文章:https://sigusoft.com/99576.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。 文章由激活谷谷主-小谷整理,转载请注明出处:https://sigusoft.com/38368.html