Thickbox 中的表单在提交时刷新父级
我在 Symfony 项目的 Thickbox 模式中有一个表单。我试图做到这一点,以便当用户提交表单时,模式关闭,表单提交并且父页面刷新以显示新数据(保存到数据库)。我添加到函数 tb_remove()
parent.location.reload(1);
这看起来像是刷新页面,但实际上并非如此。不确定我是否需要在函数中添加延迟,但是当我这样做时,我会收到语法错误。 非常感谢任何帮助。
I have a form sitting in a Thickbox modal in a Symfony project. I am trying to make it so that when the user submits the form, the modal closes, form submits and the parent page refreshes to show the new data (saved to the db). I added to the function tb_remove()
parent.location.reload(1);
This looks like it refreshes the page, but in reality it isn't. Not sure if I need to throw a delay in the function, but when I have I am getting syntax errors.
Any help is much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将 移入
tb_remove() 函数(实际上为此创建了一个单独的函数),并将其放入 fadeOut 函数中。最终函数如下所示:
Just needed to move the
into the tb_remove() function (actually created a separate function for this), and put it within the fadeOut function. final function looks like this: