条形码扫描仪在扫描时重定向到网址

时间:2017-04-26 18:22:30

标签: javascript php qr-code barcode-scanner

我有一个USB条形码扫描仪,可以粘贴扫描条形码的数据。是否可以扫描条形码并从当前浏览器重定向到基于扫描信息的页面?这将使用php,html和js

1 个答案:

答案 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);
  });
});

在这里测试代码 https://codepen.io/mbzbugsy/pen/EmZPYP