我在新标签页中提交表单:
<form action="xxx.php" target="_blank" method="post">
但旧的标签保留在表单中,我希望在提交后将其发送到另一个页面。
谢谢!
答案 0 :(得分:0)
两个选项:
1)只需删除$('#myForm').submit(function(e) {
// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");
});
并在同一页面中重定向表单。
2)在提交表单后使用Jquery执行函数:
{{1}}
答案 1 :(得分:0)
制造它!..
通过GET
function load(){
<?php
$url = "XXX.php?VAR=".$Z;
echo "window.open('$url');".PHP_EOL;
echo "window.location.href = 'YYY.php';";
?>
}