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

scan a barcode with smartphone camera from a web page

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

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

你会想用 PHP 来解决这个问题。 你的变量是 code 所以在 PHP 你会做这样的事情:

$code = $_GET['code'];

要在您的输入框中显示它,只需简单地添加 value 属性:

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