我已经尝试过window.location.href而没有做任何提交工作
window.location.href="http://www.google.com";
但是,如果我必须提交帖子,那么如果数据有效,我想使用window.location.href
执行重定向。有人可以向我解释如何做到这一点吗?谢谢!
答案 0 :(得分:1)
如果您使用的是PHP,则只需使用标题。
<?php header("Location: http://google.com"); ?>
至于使用JavaScript进行重定向...
<script> window.location = 'http://google.com'; </script>