我正在创建一个博客,希望用户在按Enter时能够创建新的文本区域,并使该文本区域自动聚焦于新创建的文本区域。我尝试使用autofocus属性,但这不起作用。我也尝试过使用nextTick函数,但这不起作用。我该怎么做?
<div v-for="(value, index) in content">
<textarea v-model="content[index].value" v-bind:ref="'content-'+index" v-on:keyup.enter="add_content(index)" placeholder="Content" autofocus></textarea>
</div>
和add_content()
的定义如下:
add_content(index) {
var next = index + 1;
this.content.splice(next, 0, '');
//this.$nextTick(() => {this.$refs['content-'+next].contentTextArea.focus()})
}
答案 0 :(得分:1)
您在正确的路径上,但是this.$refs['content-'+next]
返回一个数组,因此只需访问第一个数组并在该数组上调用.focus()
add_content(index) {
var next = index + 1;
this.content.splice(next, 0, {
value: "Next"
});
this.$nextTick(() => {
this.$refs["content-" + next][0].focus();
});
}
工作示例
var app = new Vue({
el: '#app',
data() {
return {
content: [{
value: "hello"
}]
};
},
methods: {
add_content(index) {
var next = index + 1;
this.content.splice(next, 0, {
value: "Next"
});
this.$nextTick(() => {
this.$refs["content-" + next][0].focus();
});
}
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div id="app">
<div v-for="(value, index) in content">
<textarea v-model="content[index].value" v-bind:ref="'content-' + index" v-on:keyup.enter="add_content(index);" placeholder="Content" autofocus></textarea>
</div>
</div>
此外,您在数组中的值似乎是对象而不是字符串,因此splice
在对象中而不是空字符串