uniapp取消浏览自动填充

为了防止浏览器自动将记住的密码回填进type="password"输入框,所以在type="password"输入框上面加了两行代码,使浏览器将密码填充到新加的输入框里,并将这两个input隐藏掉

html 复制代码
<input type="password" autocomplete="off" style='width:0;height:0;min-height:0'>
<input type="text" autocomplete="off" style='width:0;height:0;min-height:0'>

但是出现一个问题是点击tab键时会跳到这两个input里

在原生html中可以添加tabindex="-1"属性,点击tab时会自动跳过这个input

html 复制代码
    <input placeholder="第一个input">
    <input tabindex="-1" placeholder="第二个input">
    <input placeholder="第三个input">

但是uniapp中的input没有这个属性

可以使用这个(:disabled="true")来代替,能够实现一样的功能

html 复制代码
<input :disabled="true" type="password" autocomplete="off" style='width:0;height:0;min-height:0'/>
<input :disabled="true" type="text" autocomplete="off" style='width:0;height:0;min-height:0'/>
相关推荐
likuolei几秒前
XSL-FO 软件
java·开发语言·前端·数据库
凌波粒几秒前
SpringBoot基础教程(2)--yaml/配置文件注入/数据校验/多环境配置
java·spring boot·后端·spring
S***26752 分钟前
Spring Boot环境配置
java·spring boot·后端
6***83053 分钟前
什么是Spring Boot 应用开发?
java·spring boot·后端
毕设源码柳学姐9 分钟前
计算机毕设 java 智慧社区服务系统 SSM 框架社区生活平台 Java 开发的便民服务与互动系统
java·开发语言·生活
运维管理9 分钟前
anolis openeuler 文件复制上用命令-学习篇
服务器
I***t71610 分钟前
自己编译RustDesk,并将自建ID服务器和key信息写入客户端
运维·服务器
U***l83211 分钟前
【postgresql】分区表管理
java·数据库·postgresql
倚肆11 分钟前
MyBatis-Plus Mapper 接口方法详解
java·mybatis
n***786812 分钟前
SpringBoot详解
java·spring boot·后端