element input输入框自动获取焦点
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
博客地址:http://www.globm.top/blog/1/detail/43
最近项目中在做表单的时候,需要自动滚动到评论框,并且让评论框自动聚焦,这就需要手动触发输入框的 focus 状态。
但是,element并不支持autofocus属性,那就只能通过原生的js效果获取聚焦效果了
document.getElementById("input").focus();
或者利用vue的ref属性也可以实现聚焦效果:
原理其实很简单,Element 已经提供了 focus 方法,但是文档并没有写明如何去调用,下面是在el-input标签上加入ref属性,然后在需要的地方直接调用方法就可以了
<el-input v-model="input" placeholder="请输入内容" ref="input"></el-input>
this.$nextTick(() => {
this.$refs.input.focus()
})
注意:一个页面只能有一个聚焦效果
last , vue也支持自定义指令
当页面加载时,该元素将获得焦点 (注意:autofocus 在移动版 Safari 上不工作)。事实上,只要你在打开这个页面后还没点击过任何内容,这个输入框就应当还是处于聚焦状态。现在让我们用指令来实现这个功能:
// 注册一个全局自定义指令 `v-focus`
Vue.directive('focus', {
// 当被绑定的元素插入到 DOM 中时……
inserted: function (el) {
// 聚焦元素
el.focus()
// element-ui
el.children[0].focus()
// 元素有变化,如show或者父元素变化可以加延时或判断
setTimeout(_ => {
el.children[0].focus()
})
}
})
参考:vue自定义指令 https://cn.vuejs.org/v2/guide/custom-directive.html
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)