0

我在 joomla 中有一个包含表单的组件,这个表单在模态 sbo​​x 中......提交表单时,它会将用户重定向到成功的消息页面,但它又在模态框中,我的问题是我想要它重定向到非模态的普通页面...我该怎么做?

这是来自我的组件的重定向代码...

$url = JRoute::_('index.php?option=com_jxtcappbook'.(JRequest::getInt( 'pop', 0) ? '&view=complete&tmpl=component' : ''));
    $this->setRedirect($url,JText::_( 'You appointment was booked succesfully.'.$pop ));
4

2 回答 2

0

如果您使用的是 Joomla 2.5,则可以使用以下代码

$app = JFactory::getApplication(); $app->redirect('index.php');

如果你使用的是 Joomla1.5 比

全球$大型机;$mainframe->redirect('index.php');

如果您真的对您有帮助,请投票给我

谢谢!

于 2013-03-13T07:35:47.920 回答
0

我使用了这段代码,我得到了它的工作,但现在我需要在窗口关闭时显示提交成功的消息......

function closeme()
            {

            parent.SqueezeBox.close();

            }

            window.setTimeout('closeme();',0);
于 2013-03-13T16:02:32.873 回答