我们提交数据然后在警告框中显示结果,我们要做的是将用户发送到另一个页面(response.php?r = result)而不是显示警报。
我们使用的代码位于
之下function (result) {
setTimeout(function() {
alert("We got a barcode\n" +
"Result: " + result.text + "\n" +
"Format: " + result.format + "\n" +
"Cancelled: " + result.cancelled);
}, 0);
},
非常感谢您提供的帮助
答案 0 :(得分:0)
这样的事情
location.href = 'response.php?r=' + JSON.stringify(result);