解决 input type=“password“ 标签自动记住账号密码问题

"本文介绍了一种防止HTML输入框自动记住密码的方法,通过将`<input type="password">`改为`<input type="text">`并自定义显示方式,将真实密码存储为属性值。在用户输入时,监听`input`事件,实时更新显示的星号(●)和隐藏的真实密码。此方法同时处理了光标位置的问题,确保在Windows 8系统中光标不会总移动到输入框末尾。"
摘要由CSDN通过智能技术生成

html 解决 input type="password" 标签自动记住账号密码问题

主要实现逻辑

把input type=“password” 改成 type=“text” ,隐藏input密码,用 ‘●’ 代替input中的内容,把真实密码存到input标签的一个属性中实现,下面的逻辑,每次input框中内容变化,获取真实密码逻辑如下:

代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
	<form id="editPasswordForm" autocomplete ='off'>
		<input type="text" class="form-control validate[required]" autocomplete ='off' id="mopwd" mopwd="" placeholder="请输入原密码"/>
		<input type="text" class="form-control validate[required]" autocomplete ='off' id="newpwd1" newpwd1="" placeholder="请输入新密码"/>
		<input type="text" class="form-control validate[required]"  autocomplete ='off' id="newpwd2" newpwd2="" placeholder="请再次输入密码"/>
	</form>	
</body>
<script>
	$("#mopwd").on('input',
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

lxt_ds

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值