我有一个登录表单。
它包含2个字段:登录名和密码。
<form method="post">
<input type="text" name="login" value="">
<input type="password" name="password" value="">
<input type="submit" value="Login">
</form>
我希望在表单提交后隐藏输入的密码值
请参阅https://postimg.org/image/qvdftdnzl/
如您所见,用户可以通过firebug查看输入的密码
换句话说,我希望没有人能够获得这个价值
有可能吗?
感谢您的帮助
答案 0 :(得分:0)
您无法将其隐藏在浏览器中,这就是HTTP的工作原理。但是你可以使用HTTPS。