js获取USB扫码枪数据 js获取USB扫码枪数据的方法
zlxls 人气:0想了解js获取USB扫码枪数据的方法的相关内容吗,zlxls在本文为您仔细讲解js获取USB扫码枪数据的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:js获取USB扫码枪数据,js获取扫码枪数据,js扫码枪数据,下面大家一起来学习吧。
废话不多说,直接上代码,这个方法避免了 首字缺失,字符串乱码等等问题,特别好用,记录一下
中间的Ajax可直接调用登录功能,实现自动登录
说明:输入框需要获得焦点,这个是必须的,其次为了防止回车触发手动登录,需要添加οnkeypress="if(event.keyCode==13) return false;"这个操作,这个在回车的时候,输入框焦点不会丢失,除非手动切换焦点,或者调用focus();方法
<div class="form-group"> <label for="inputUsernameEmail">账号</label> <input type="text" placeholder="请输入账号" name="username" id="loginname" class="form-control" autofocus onkeypress="if(event.keyCode==13) return false;"> </div>
代码:
<script> window.onload = (e)=> { this.start = new Date().getTime() let code = '' let lastTime, nextTime let lastCode, nextCode let that = this window.document.onkeypress = function (e) { if (window.event) { // IE nextCode = e.keyCode } else if (e.which) { // Netscape/Firefox/Opera nextCode = e.which } console.log('nextCode', nextCode) if (e.which === 13 || window.event === 13) { var deviceCode = code; console.log(code) console.log('扫码结束') console.timeEnd() code = '' lastCode = '' lastTime = '' $.ajax({ cache: true, type: "POST", url: rootPath + "/admin/login", data: {code: deviceCode, type: 1}, async: false, error: function (request) { $("#loginname").val(""); $.modal.alertError("系统错误"); }, success: function (data) { $("#loginname").val(""); if (data.code == 200) { location.href = rootPath + '/admin/index'; } else { $.modal.alertError(data.msg); } } }); } nextTime = new Date().getTime() if (!lastTime && !lastCode) { console.log('扫码开始。。。') code += e.key } if (lastCode && lastTime && nextTime - lastTime > 500) { // 当扫码前有keypress事件时,防止首字缺失 console.log('防止首字缺失。。。') code = e.key } else if (lastCode && lastTime) { console.log('扫码中。。。') code += e.key } lastCode = nextCode lastTime = nextTime } } </script>
加载全部内容