美文网首页
vue中禁掉默认的键盘事件

vue中禁掉默认的键盘事件

作者: 蜗牛和曼巴 | 来源:发表于2021-04-10 09:30 被阅读0次

    1.在methods中写下方法

     showkey() {
          document.onkeydown = function() {
            console.log(window.event.returnValue);
            if (window.event.keyCode == 13) {
              window.event.returnValue = false;
            }
            console.log(window.event.returnValue);
          };
        },
    

    2.在mounted中

    this.showkey();
    

    3.在带有默认键盘事件的方法中调用

    this.showkey();
    

    相关文章

      网友评论

          本文标题:vue中禁掉默认的键盘事件

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