我有一个简单的表格:
<form id="frm" action="process.php" method="post">
<input type="text" id="shortcut" name="shortcut" />
</form>
在process.php
:
$gomenu = $_POST['shortcut'];
if(strpos($gomenu, "/") === 0) {
//if $gomenu contains `/`, then it should open in new tab
header('Location: newTab.php'); //--> How to open this into a new tab?
} else {
header('Location: somePage.php'); //--> Redirect to somePage.php on the same tab
}
当shortcut
包含 的值时/
,它应该被重定向到一个新的选项卡,否则同一个选项卡。怎么做?我知道使用 不可能做到这一点header();
,但我不知道该怎么做。有任何想法吗?谢谢。
PS:该表单旨在通过菜单代码填写,然后它必须根据填写的菜单代码重定向页面shortcut
(如在SAP中)。但如果它包含特定的前缀,则应采用不同的方式。
更新
在表格上方,我添加了这个脚本:
<script>
$("#frm").ajaxForm({
url: 'process.php', type: 'post'
});
</script>
并且在process.php
:
$gomenu = $_POST['shortcut'];
if(strpos($gomenu, "/") === 0) {
print "<script>
window.open('newTab.php', '_newtab');
</script>";
} else {
header('Location: somePage.php');
}
但随后它在一个新的弹出窗口中打开。如何在新标签页上打开它?
答案(@fedmich 的答案)
$(document).ready(function () {
$('frm#frm').submit(function(){
var open_new_tab = false;
var v = $('#shortcut').val();
if(v.match('/') ){
open_new_tab = true;
}
if ( open_new_tab ) {
$('frm#frm').attr('target', '_blank');
} else {
$('frm#frm').attr('target', '_self');
}
});
});