从 Shadowbox 中拉取表单,然后从父窗口提交

发布于 2024-08-30 12:09:05 字数 282 浏览 5 评论 0原文

我在shadowbox中有一个表单,当用户单击提交按钮(或带有onclick的链接,我不介意)时,我想介入,关闭shadowbox,然后从父窗口提交表单数据。谁能告诉我该怎么做?我无法解决。

像这样的半伪代码...

$("#my_form").submit(function(){
  var parent = window.parent;
  parent.Shadowbox.close();
  parent.submit($(this));
}

谢谢,max

I have a form in a shadowbox, and when the user clicks the submit button (or a link with an onclick, i don't mind) i want to step in, close the shadowbox, then submit the form data from the parent window. Can anyone tell me how to do this? I can't work it out.

Something like this semi-pseudocode...

$("#my_form").submit(function(){
  var parent = window.parent;
  parent.Shadowbox.close();
  parent.submit($(this));
}

thanks, max

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

错々过的事 2024-09-06 12:09:05

如果您不介意先关闭 Shadowbox,则可以在表单标记中使用 target="_parent"

If you're not picky about closing the shadowbox first, you can just use a target="_parent" in the form tag.

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