PHP / JQUERY / 条形码扫描仪
我正在创建一个网络应用程序。为客户提供一个小问题。 它打印出带有条形码的订单,可以再次扫描到应用程序中。 问题是,当执行扫描时,它可以完美地读取条形码,但会进入并打开以前加载的页面。
有人对条形码扫描问题有帮助吗? 我将其扫描到文本框并由于某种原因,它会自动将数字打入地址栏。
<form method="post" action="?action=orderscanpos">
<fieldset>
<table cellpadding="5" cellspacing="0" width="100%">
<tr><td align="left">Ordernummer:</td><td align="left"><input type="text" name="order_id" value="<?php echo $scan; ?>"/></td></tr>
<tr><td align="left"></td><td align="left"><input type="submit" name="cmd_up" value="order status updaten" /></td></tr>
</table>
</fieldset>
i'm creating a webapp. for a customer and have a small issue.
It prints out orders with a barcode on it, which can be scanned again into the app.
The problem is when a scan is being performed, it reads the barcode perfect but enters and opens up previous loaded pages.
Anyone any help concerning the barcode scanning problem?
I'm scanning it into a textbox & it automatically hits the numbers into the address bar for some reason.
<form method="post" action="?action=orderscanpos">
<fieldset>
<table cellpadding="5" cellspacing="0" width="100%">
<tr><td align="left">Ordernummer:</td><td align="left"><input type="text" name="order_id" value="<?php echo $scan; ?>"/></td></tr>
<tr><td align="left"></td><td align="left"><input type="submit" name="cmd_up" value="order status updaten" /></td></tr>
</table>
</fieldset>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查条形码阅读器的键盘配置详细信息,大多数可以配置为在条形码信息之前点击某些组合键,也许您的配置为点击导致这种情况的组合键。
Check the keyboard configuration details of the barcode reader, most can be configured to hit certain key combinations prior to the barcode info, maybe yours is configured to hit a key combination that causes that.