2

我有一个简单的表格:

<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');
                }
            });
        });
4

3 回答 3

3

通过 AJAX 提交您的表单,在 PHP 的响应中发送新 URL,并使用 JavaScript 打开您的新窗口(如果您的 PHP 脚本指定它应该这样做)。

于 2012-11-17T05:23:33.963 回答
3

我认为您可以这样做,默认情况下将目标设为空白

<form id="frm" action="process.php" method="post" target="_blank">

</form>

然后在表单上提交时 submit() 并根据需要进行修改和导航。您可以在提交之前使用 javascript,更改操作或目标属性

http://jsfiddle.net/fedmich/9kpMU

$('form#frm').submit(function(){
    var open_new_tab = false;
    var v = $('#shortcut').val();
    if(v.match('/') ){
        open_new_tab = true;
    }

    if ( open_new_tab ) {
        alert('opening to new tab');
        $('form#frm').attr('target', '_blank');
        $('form#frm').attr('action', 'http://www.youtube.com');
    }
    else{
        alert('opening to self_page');
        $('form#frm').attr('target', '_self');
        $('form#frm').attr('action', 'http://www.yahoo.com');
    }
});
于 2012-11-17T05:26:04.630 回答
0
<?php

$gomenu = $_POST['shortcut'];

if(strpos($gomenu, "/") === 0) 
{
    echo "<script type='text/javascript'>window.open('newTab.php', '_blank')</script>";
} 
else 
{
    echo "<script type='text/javascript'>window.open('newTab.php', '_parent')</script>";
}

?>
于 2012-11-17T05:33:51.660 回答