前端开发您现在的位置是:首页 > 博客日志 > 前端开发

vue element el-input自动获取焦点并选中值

<a href='mailto:'>微wx笑</a>的头像微wx笑 2022-07-06前端开发 1 0关键字: vue  element  

vue element el-input自动获取焦点并选中值关键是要设置“ref”属性,例如:ref="amount"相关代码:<el-input v-model="form.amount" ref="amount" maxlength="11" placeholder="

vue element el-input自动获取焦点并选中值LN1无知

关键是要设置“ref”属性,例如:ref="amount"LN1无知

相关代码:LN1无知

<el-input v-model="form.amount" ref="amount" maxlength="11" placeholder="0.00" onkeyup="this.value = this.value.replace(/[^\d\.]/g,'');"></el-input>
var vm = this;
        if (vm.form.amount < 0.01){
          this.$message.warning(`金额必须大于0`);
          this.$refs['amount'].focus();
          this.$refs['amount'].select();
          return;
        }


LN1无知

本文由 微wx笑 创作,采用 署名-非商业性使用-相同方式共享 4.0 许可协议,转载请附上原文出处链接及本声明。
原文链接:https://www.ivu4e.cn/blog/front/2022-07-06/1293.html

很赞哦! () 有话说 ()