1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > 禁止(防止)浏览器自动填充密码

禁止(防止)浏览器自动填充密码

时间:2018-12-15 02:49:56

相关推荐

禁止(防止)浏览器自动填充密码

禁止(防止)浏览器自动填充密码由于设置autocomplete属性和添加隐藏文本框,以及在初始化时阻止写入等方法都无法完全满足需求,所以只能通过js逻辑来控制。效果图

主要代码

/**** 禁止浏览器自动填充密码** @method disabledRememberPassword* @param {any} el 目标(可多个)**/function disabledRememberPassword(el) {var _el = typeof el === 'object' ? el : $(el);if (!_el || _el.length == 0)return;_el.each(function (index, item) {$(item).attr('ilength', 0).attr('autocomplete', 'off').attr('type', 'text').attr('readonly', 'readonly').val('').on('focus', function () {this.type != 'password' ? this.type = 'password' : 1;}).on('mouseout', function () {this.setAttribute('readonly', 'readonly');}).on('mouseover', function () {this.removeAttribute('readonly');}).on('input', function () {this.setAttribute('ilength', this.value.length > item.attributes['ilength'].value ? ++item.attributes['ilength'].value : --item.attributes['ilength'].value);});var clear = () => {!item.value ? setTimeout(check, 500) : (item.value = '', setTimeout(clear, 100));};var check = () => {item.value.length != item.attributes['ilength'].value ? (item.setAttribute('ilength', 0), item.value.length == 0 ? setTimeout(check, 500) : (layer.tips('检测到密码输入异常,已自动拦截', item, {tips: [2, '#000000'],time: 2000}), clear())) : setTimeout(check, 500);};check();});}

说明:其中提示相关的代码使用的是layui的layer模块,可以换成自己想用的东西,或者不进行任何提示。使用方式单个

<body><input id="password"/></body><script>$(function(){disabledRememberPassword('#password');//或者disabledRememberPassword($('#password'));})</script>

多个

<body><input id="password_0"><input id="password_1">......</body><script>$(function(){disabledRememberPassword('#password_0,#password_1')//或者 disabledRememberPassword($('#password_0,#password_1'))})</script>

也可以直接写在body的onload中

<body onload="disabledRememberPassword('#password')"><input id="password" /></body>

总结

其实比较完善的解决方式是

在登录页以及其他会使浏览器提示是否记住密码的页面,放置说明和提示,告知用户这样操做会存在风险在需要输入密码的地方使用这个js方法进行防范

如果这些有帮助到你,记得点个赞哟。有什么疑问的话,可以在评论区留言。

posted on -04-09 13:17 LCTR 阅读(...) 评论(...) 编辑 收藏

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。