element组件el-input的focus方法要如何调用?我想主动触发这个input的focus

文档里就一行字,没有例子,该如何调用?在线等。

https://img2.mukewang.com/5c92fcde00019d2108000158.jpg

智慧大石
浏览 10598回答 6
6回答

慕尼黑8549860

<el-input v-model="input" placeholder="请输入内容" @focus="f()"></el-input>methods:{&nbsp; &nbsp; f:function() {&nbsp; &nbsp; &nbsp; &nbsp; console.log('focus');&nbsp; &nbsp; }&nbsp; }

SMILET

<el-input v-model="input" placeholder="请输入内容" ref="inputRef"></el-input>this.$refs.inputRef.$el.children[0].focus();

一只甜甜圈

<el-input v-model="input" placeholder="请输入内容" ref="inputRef"></el-input>mounted(){&nbsp; &nbsp; this.$refs.inputRef.focus()}

胡子哥哥

<el-input v-model="input" placeholder="请输入内容" ref="inputRef"></el-input>this.$refs.inputRef.focus();实测是可以的,mothod都是通过这种方式触发的
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript