Vue Input输入框自动获得焦点的有效方法

效果:在点击Tab "Material Incoming"的时候,鼠标光标focus在PKG ID的input输入框关键代码是使用 this.$nextTick(()

        this.$nextTick(() => {
                this.$refs.pkgId.focus();
        })

注意:仅仅使用 this.$refs.pkgId.focus(); 是不起作用的,需要点击Tab Material Incoming 两次才有效,但这并不是初衷。即:

方法A:生效

    tabInitialClick(tab, event) {
      this.$nextTick(() => {
        this.$refs.pkgId.focus();
      })
    },

方法B:不生效

    tabInitialClick(tab, event) {
      this.$refs.pkgId.focus();
    },

另外,以下方法如下,使用autofocus=“true" 也不生效,原因网上资料说是因为 外面还有其他组件 (我试了一个Form只有一个 也没生产。不知道为什么。。。)


    
          
    

Vue Input输入框自动获得焦点的有效方法_第1张图片

Vue Input输入框自动获得焦点的有效方法_第2张图片

Vue Input输入框自动获得焦点的有效方法_第3张图片

补充:vue input 获取焦点并选中

onRename(row) {
      this.$nextTick(() => {
        document.querySelector(`#a${row.id}`).focus()
        document.querySelector(`#a${row.id}`).select()
      })
    },

通过id获取焦点并选中

总结

到此这篇关于Vue Input输入框自动获得焦点的文章就介绍到这了,更多相关Vue Input输入框自动获得焦点内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(Vue Input输入框自动获得焦点的有效方法)