从 Shadowbox 中拉取表单,然后从父窗口提交
我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不介意先关闭 Shadowbox,则可以在表单标记中使用
target="_parent"
。If you're not picky about closing the shadowbox first, you can just use a
target="_parent"
in the form tag.