0

当使用表达式引擎满足确认状态时,我希望显示一个新页面。请看下面的代码:

<div class="column">
<p><button type="submit" class="submit" name="submit"><span>Submit Order</span></button> </p>        
{if segment_2 == "confirm"}
{/exp:channel:Confirmation}
{/if}
</div>
4

1 回答 1

0

如果您创建了一个显示确认消息的模板,您可以在条件内重定向到它:

{if segment_2 == "confirm"}
    {redirect="template_group/template"}
{/if}

尽管可能有更好的方法取决于用于创建表单的内容。Channel Form (Safecracker)和Freeform接受一个return=""参数,您可以使用该参数在提交时重定向人们。

于 2013-11-11T23:43:15.367 回答