chrome设置【auto-complete=off】属性无效的解决办法

3 篇文章 0 订阅
2 篇文章 0 订阅

针对chrome设置【auto-complete=off】属性无效问题进行了搜索,解决办法基于以下搜索记录(因搜索结果的方法实测在【搜索1:无输入内容时获取焦点依然会有密码提示框问题,搜索2也是该问题】,但是给我提供了思路,故记录一下此坑

<el-input type="password" ref="password" v-show="inputType=='password'" v-model.trim="form.password" placeholder="请输入当前账户的登录密码"> </el-input>
 <el-input type="text" ref="text" v-show="inputType=='text'" v-model.trim="form.password" placeholder="请输入当前账户的登录密码"> </el-input>
inputType: "text"

'form.password': {
        immediate: true,
        handler(val) {
          this.inputChange(val);
        }
   }
inputChange(val) {
        if (!val) {
          this.inputType = "text";
        } else {
          this.inputType = "password";
        }
        // console.log('val', val, this.inputType);
        this.$nextTick(() => {
          if (this.$refs[this.inputType]) {
            this.$refs[this.inputType].$refs.input.focus();
          }
        });
      }

搜索结果如下:在这里插入图片描述
结果1:https://blog.csdn.net/ta_huang/article/details/126852363
结果2:https://www.cnblogs.com/linjiangxian/p/15817796.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值