问题(05)elementui 输入框里面禁止浏览器自动填充用户名密码、弹出浏览器历史密码提示框

问题描述

el-input,非密码框,在输入时,

  • 问题1: 浏览器自动填充用户名密码。
  • 问题2:右边显示浏览器历史密码提示框。

问题解决

问题1:使用auto-complete="new-password"

html 复制代码
<input type="text" placeholder="" class="custom_input" auto-complete="new-password" />

问题2,在证件号输入框后面在添加一个el-input框,并给新input框设置classs属性custom_input

html 复制代码
<input type="text" placeholder="" class="custom_input" auto-complete="new-password" />
css 复制代码
.custom_input {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	padding: 0;
	border: none;
}
相关推荐
恋猫de小郭3 小时前
AGENTS.md 真的对 AI Coding 有用吗?或许在此之前你没用对?
前端·人工智能·ai编程
sunny_5 小时前
构建工具的第三次革命:从 Rollup 到 Rust Bundler,我是如何设计 robuild 的
前端·rust·前端工程化
rfidunion6 小时前
springboot+VUE+部署(12。Nginx和前端配置遇到的问题)
前端·vue.js·spring boot
vx-Biye_Design6 小时前
servlet家政公司管理系统-计算机毕业设计源码01438
java·vue.js·spring·servlet·tomcat·maven·mybatis
珹洺6 小时前
Java-servlet(五)手把手教你利用Servlet配置HTML请求与相应
java·运维·服务器·前端·servlet·html·maven
QQ24391976 小时前
语言在线考试与学习交流网页平台信息管理系统源码-SpringBoot后端+Vue前端+MySQL【可直接运行】
前端·spring boot·sql·学习·java-ee
范特西.i7 小时前
QT聊天项目(6)
前端
a1117767 小时前
水体渲染系统(html开源)
前端·开源·threejs·水体渲染
程序员小李白7 小时前
CSS 盒子模型
前端·css·html
Zzz不能停7 小时前
单行 / 多行文本显示省略号(CSS 实现)
前端·css