IE浏览器里有autocomplete="off",可以禁止自动补全账号和密码,为了防止信息泄露,需要去除自动补齐。

自动补齐产生的场景是,form里面有密码框,因此只要将该密码框设置为text,点击的时候再改回password就解决了。

$("#paypwd").click(function(){
		$(this).attr("type","password");
	});

  

相关文章:

  • 2021-10-31
  • 2021-05-02
  • 2021-09-02
  • 2021-11-04
  • 2021-09-10
  • 2022-12-23
  • 2021-11-22
猜你喜欢
  • 2021-11-18
  • 2021-12-13
  • 2021-09-24
  • 2021-09-12
  • 2021-03-27
  • 2022-12-23
相关资源
相似解决方案