通过JS将用户发送到新页面

时间:2015-09-30 11:03:16

标签: javascript jquery

我们提交数据然后在警告框中显示结果,我们要做的是将用户发送到另一个页面(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);
                },  

非常感谢您提供的帮助

1 个答案:

答案 0 :(得分:0)

这样的事情

location.href = 'response.php?r=' + JSON.stringify(result);