美文网首页
vue 回车键登陆

vue 回车键登陆

作者: Innocence1874 | 来源:发表于2020-02-29 17:20 被阅读0次

created() {

    let that =this;

    document.onkeypress = function(e) {

      varkeycode = document.all ?event.keyCode : e.which;

      if(keycode ==13) {

        that.login();// 登录方法名

        returnfalse;

      }

    };

  }

相关文章

网友评论

      本文标题:vue 回车键登陆

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