vue中给buttion按钮添加键盘回车(enter)事件

一、给button按钮绑定@keyup.enter

 

二、浏览器url:event.target.baseURI;

created(){

this.keyupEnter() }, methods:{ keyupEnter(){ document.onkeydown = e =>{ let body = document.getElementsByTagName('body')[0] if (e.keyCode === 13 && e.target.baseURI.match(/inputbook/) && e.target === body) { console.log('enter') this.handleAddBook() } } }, handleAddBook(){ if(this.validate()){ this._printQrcode() } } }

 

转载于:https://www.cnblogs.com/wangdashi/p/9646219.html

你可能感兴趣的:(vue中给buttion按钮添加键盘回车(enter)事件)