1. 程式人生 > >vue回車事件繫結

vue回車事件繫結

created:function(){
      //登入新增鍵盤事件,注意,不能直接在焦點事件上添加回車
      let that = this;
      document.onkeydown = function (e) {
        let key = window.event.keyCode;
        if (key === 13){
          that.handleSubmit2();//方法
        }
      }
    },