Thickbox 中的表单在提交时刷新父级

发布于 2024-09-11 14:18:24 字数 232 浏览 15 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我只土不豪 2024-09-18 14:18:24

只需将 移入

parent.location.reload();

tb_remove() 函数(实际上为此创建了一个单独的函数),并将其放入 fadeOut 函数中。最终函数如下所示:

function tb_removeAdminModal() {
  $("#TB_imageOff").unbind("click");
  $("#TB_closeWindowButton").unbind("click");
  $("#TB_window").fadeOut(1000,function(){
    $('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();
    parent.location.reload();
  });
  $("#TB_load").remove();
  if (typeof document.body.style.maxHeight == "undefined") {//if IE 6
   $("body","html").css({height: "auto", width: "auto"});
   $("html").css("overflow","");
  }
  document.onkeydown = "";
  document.onkeyup = "";

  return false;
}

Just needed to move the

parent.location.reload();

into the tb_remove() function (actually created a separate function for this), and put it within the fadeOut function. final function looks like this:

function tb_removeAdminModal() {
  $("#TB_imageOff").unbind("click");
  $("#TB_closeWindowButton").unbind("click");
  $("#TB_window").fadeOut(1000,function(){
    $('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();
    parent.location.reload();
  });
  $("#TB_load").remove();
  if (typeof document.body.style.maxHeight == "undefined") {//if IE 6
   $("body","html").css({height: "auto", width: "auto"});
   $("html").css("overflow","");
  }
  document.onkeydown = "";
  document.onkeyup = "";

  return false;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文