created() { this.getList() this.$nextTick(() => { this.$refs.searchBox.focus() }) _js el-input自动聚焦 选不中">
赞
踩
提示:vue项目中,element ui el-input组件自动聚焦(autofocus)事件失效
原因是input元素外部有其他元素,得手动调用一下聚焦事件
<el-input placeholder="请输入搜索内容" ref="searchBox" ></el-input>
created() {
this.getList()
this.$nextTick(() => {
this.$refs.searchBox.focus()
})
}
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。