jquery 扫码枪执行操作事件代码 最简代码【亲测有效!!!】
程序员文章站
2022-06-14 22:26:26
...
第一步:获取input框id,并聚焦
var myInputISBN = document.getElementById('code_new');
$('[name=stock_unique_id]').focus();
第二步:开始扫码,要操作的内容写在文字提示那
//书本编码扫码
var lastTime = null;
myInputISBN.onkeydown = function (e) {
let keycode = e.keyCode || e.which || e.charCode;
var nextTime = new Date();
if (keycode === 13) {
if (lastTime && (nextTime - lastTime < 300)) {
return;
}else{
lastTime = nextTime;
}
inputisbns = myInputISBN.value;
if(inputisbns){
↓ ↓ ↓ ↓ ↓ ↓
console.log('扫码枪');
要操作的内容写在这里
console.log('扫码枪');
↑ ↑ ↑ ↑ ↑ ↑
}
}
};
上一篇: webpack使用babel压缩css
下一篇: Object类与String类笔记