我正在使用 Fancybox 2 在我的网站上显示一些表格。表单从外部页面进入 IFrame 以让用户发布消息,有点像 twitter 所做的。但是,我希望在表单发布后重新引导用户。因此他们将表单发布到数据库,Fancybox 窗口关闭,然后他们被重定向到他们看到新发布的消息的发布页面。有没有办法成功地做到这一点?
问问题
1579 次
2 回答
1
你可以试试这个:
<script>
if(data == 1){
//window.location.replace("dashboard.php"); //will open the page in the fancybox
parent.$.fancybox.close(); //will close the fancybox
//parent.window.location.replace( your_url_here ); //your redirecting URL here
parent.window.location.href = 'dashboard.php'; //your redirecting URL here
}
</script>
于 2013-06-18T11:18:59.043 回答
0
我建议您使用真实form
而不是post
动作。您并没有真正使用表单提交,而只是一个POST
请求。
如果这样做,您可以使用标签target="_top"
内部并使用jQuery的提交功能提交结果。<form
于 2013-06-18T11:04:39.813 回答