如何添加 Javascript 监听器来捕获从蓝牙条码扫描仪到 iPad 的输入?
我在 iPad 上用 javascript 记录击键时遇到问题。以下脚本适用于 Chrome 和 Safari,但不适用于 iPad Safari。蓝牙条形码扫描仪发送 12 位数字作为击键,然后发送一个返回字符。有人有什么想法吗?
我想你需要一台 iPad 来尝试这个:)
谢谢, 标记
$(document).ready(function(){
$(document).keypress(function(e){
if( e.keyCode == 13){
alert($('#barcode').attr('value'));
$('#barcode').attr('value','');
}
else{
var key = String.fromCharCode(e.which);
var new_val = $('#barcode').attr('value') + key;
$('#barcode').attr('value',new_val);
}
});
});
I'm having trouble logging keystrokes in javascript on the iPad. The following script works on Chrome and Safari, but not iPad Safari. The bluetooth barcode scanner sends 12 digits as keystrokes, then sends a return character. Does anyone have any ideas?
I think you will need an iPad to try this out :)
Thanks,
Mark
$(document).ready(function(){
$(document).keypress(function(e){
if( e.keyCode == 13){
alert($('#barcode').attr('value'));
$('#barcode').attr('value','');
}
else{
var key = String.fromCharCode(e.which);
var new_val = $('#barcode').attr('value') + key;
$('#barcode').attr('value',new_val);
}
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
iOS 版 Safari 不会在非表单组件的 DOM 元素上触发键盘事件。这包括通常用于捕获页面上任何位置的击键的文档和正文。
在文档或页面正文上触发击键事件的唯一方法是在输入或文本区域中触发它。在这种情况下,事件将正确地“冒泡”到正文和文档。
然而,这可能是一个问题,因为 iOS 版 Safari 不允许我们通过 javascript 给予元素焦点。
目前,我们正在使用一种解决方案,用户必须在开始第一次扫描之前单击输入字段,然后输入字段将移出屏幕但保留焦点。
如果有人有更好的解决方案,请分享。
Safari for iOS doesn't trigger keyboard events on DOM elements that are not components of a form. This includes the document and body which are usually used to capture keystrokes anywhere on the page.
The only way to trigger a keystroke event on document or body of a page is to trigger it in an input or textarea. In that case, the event will correctly 'bubble' to the body and document.
However, this might be a problem because Safari for iOS doesn't allow us to give an element focus from javascript.
At the moment, we are using a solution where user has to click on an input field before starting the first scan, and the input field is then moved off-screen but retains focus.
If someone has a better solution, please share.
您好,尝试使用仅适用于“Prototype”javascript 框架的方法。
该脚本仅适用于 EAN13 或 EAN8,但如果您想使用 12 位数字,只需更改“if(result.lenght == 13)”。
Hello try to use this that work only with the "Prototype" javascript framework.
This script work only with EAN13 or EAN8, but if you want to works with 12 digit just change the "if(result.lenght == 13)".