码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-09-14 14:32:28      阅读:2019      评论:0      收藏:0      [点我收藏+]

标签:tag   inpu   回车   amp   book   键盘   OLE   let   date()   

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

<div class="btn">
       <Button  type="primary" @click="handleAddBook" @keyup.enter="handleAddBook">录入</Button>
</div>

 

二、浏览器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() } } }

 

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

标签:tag   inpu   回车   amp   book   键盘   OLE   let   date()   

原文地址:https://www.cnblogs.com/wangdashi/p/9646219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!