ColdFusion cflocation到新标签

时间:2018-01-12 18:01:56

标签: coldfusion cflocation

如何使用cflocation打开新标签?

我提交了一个表单,然后它应该打开一个新标签并重定向原始页面。有可能吗?

<cfform ACTION="./test.cfm" METHOD=POST>

然后在test.cfm

    <!-- Some database update here -->

<!--- I would like to open it in new tab --->
<cflocation url="newTab.cfm" addtoken="false">

<!--- Then refirect the current page to new link --->
<cflocation url="redirect.cfm" addtoken="false">

是否可以完成?

由于

1 个答案:

答案 0 :(得分:4)

最接近的是

<cfform ACTION="./test.cfm" METHOD=POST target="_blank"
    onsubmit="window.location('redirect.cfm')">

用户的浏览器可能会进入新选项卡。

Per Dan

这个等式的其余部分是

onsubmit="window.location('redirect.cfm')"