目录
一、如何单纯的在密码框显示密码
单纯显示密码可以吧type里面的值改成text,如果要隐藏就改成 password。
<input type="text">
二、如何在密码框里面显示并可以隐藏密码
点击密码框的小眼睛隐藏显示密码:只需添加data="passworedtype"
<input type="password" name="pwd" data="passworedtype"/>
三、代码展示
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>密码的隐藏和显示</title>
</head>
<body>
<input type="password" name="pwd" data="passworedtype"/>
</body>
</html>
四、结果展示