使用智能手机摄像头从网页扫描条形码

时间:2018-11-04 22:50:40

标签: html jquery-plugins smartphone

我想用智能手机摄像头从网页扫描条形码 链接在这里。问题是如何将来自此链接的扫描文本存储在网页的输入框中?

http://example.azurewebsites.net/desc.html?code= {CODE}“>扫描

1 个答案:

答案 0 :(得分:0)

您将要使用PHP解决此问题。 您的变量为code,因此在PHP中您将执行以下操作:

$code = $_GET['code'];

要在输入框中显示它,只需添加value属性:

<input type="text" value="<?php echo $_GET['code']; ?>">