1:将input[type="password"],改为type为text就行了!

2:按F12调出开发者工具,切换到Console控制台,粘贴下面代码回车运行可以显示密码
var pw = document.querySelectorAll('input[type="password"]');
for (var i = 0; i < pw.length; i++) {
pw[i].type = 'text';
}

相关文章:

  • 2021-11-16
  • 2021-07-03
  • 2021-06-21
  • 2022-12-23
  • 2021-12-23
  • 2021-10-12
  • 2021-07-24
  • 2021-12-05
猜你喜欢
  • 2022-01-08
  • 2021-04-17
  • 2022-02-14
  • 2021-04-17
  • 2021-11-28
  • 2021-06-11
  • 2021-09-20
相关资源
相似解决方案