uniapp textarea 设置focus
时间: 2024-02-29 21:50:20 浏览: 177
textarea焦点用法
在UniApp中,可以使用`<textarea>`标签来创建一个多行文本输入框。要设置`<textarea>`的焦点,可以使用`ref`属性和`$refs`来获取`<textarea>`的实例,并调用其`focus()`方法。
以下是一个示例代码:
```html
<template>
<view>
<textarea ref="myTextarea"></textarea>
<button @click="setFocus">设置焦点</button>
</view>
</template>
<script>
export default {
methods: {
setFocus() {
this.$refs.myTextarea.focus();
}
}
}
</script>
```
在上面的代码中,我们首先给`<textarea>`标签添加了一个`ref`属性,值为"myTextarea"。然后,在`setFocus`方法中,通过`this.$refs.myTextarea`获取到了`<textarea>`的实例,并调用其`focus()`方法来设置焦点。
当点击"设置焦点"按钮时,就会调用`setFocus`方法,从而设置`<textarea>`的焦点。
希望以上信息能对你有所帮助!
阅读全文