我有一个USB条形码扫描仪,可以粘贴扫描条形码的数据。是否可以扫描条形码并从当前浏览器重定向到基于扫描信息的页面?这将使用php,html和js
答案 0 :(得分:-1)
也许这样的事情。
<h3>Barcode</h3>
<textarea class="bcode" name="barcode"></textarea>
<span class="action"></span>
处理行动的一些js
$(function() {
$('.bcode').on('paste',function(){
var _this = this;
setTimeout(function(){
//now do something with the paste data
window.location = "https://www.google.se/search?q=" + _this.value;
},1000);
});
});