码迷,mamicode.com
首页 > 其他好文 > 详细

vue中让input框自动聚焦

时间:2018-11-30 15:34:25      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:ted   写法   nbsp   col   create   class   methods   ref   回调函数   

  created(){
   this.changfouce();
  },
  methods: {
    //在vue生命周期的created()钩子函数进行的DOM操作要放在Vue.nextTick()的回调函数中,
    //因为created()钩子函数执行的时候DOM并未进行任何渲染,而此时进行DOM操作是徒劳的,所以此处一定要将DOM操作的JS代码放进Vue.nextTick()的回调函数中。
    changfouce(){
    this.$nextTick((x)=>{   //正确写法
       this.$refs.inputs.focus();
    })
     this.$refs.inputs.focus(); //错误写法
     
    },

 

vue中让input框自动聚焦

标签:ted   写法   nbsp   col   create   class   methods   ref   回调函数   

原文地址:https://www.cnblogs.com/huanhuan55/p/10043816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!