美文网首页
绑定enter键

绑定enter键

作者: Cherry9507 | 来源:发表于2021-05-27 10:48 被阅读0次
methods:{
  //如果是回车则执行登录方法
    keyDown(e){
      if(e.keyCode == 13){
        this.submitForm('form');
      }
    }
},
 created() {
    // 绑定keydown事件
    window.addEventListener('keydown',this.keyDown);
  },
 destroyed(){
    //移除keydown事件
    window.removeEventListener('keydown',this.keyDown,false);
  }

相关文章

网友评论

      本文标题:绑定enter键

      本文链接:https://www.haomeiwen.com/subject/equejltx.html