JQuery Thickbox 表单将值返回给父级

发布于 2024-07-25 04:51:50 字数 1436 浏览 4 评论 0原文

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

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

发布评论

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

评论(2

夏日浅笑〃 2024-08-01 04:51:50

您可以从 iframe 厚盒中将数据发送回父级:

在父级上,您可以编写一个函数来处理此数据:

function new_info(from_form) {
  $('#thing').text(from_form);
}

然后只需使用父级从 iframe 页面在提交函数(或任何位置)中调用此函数即可:

$('#myForm').submit(function(){
  parent.new_info($('#phone_number').val());
});

You can send data back to the parent from within an iframe thickbox:

On your parent, you can write a function to handle this data:

function new_info(from_form) {
  $('#thing').text(from_form);
}

Then simply call this function in your submit function (or where ever) from the iframe page using parent:

$('#myForm').submit(function(){
  parent.new_info($('#phone_number').val());
});
粉红×色少女 2024-08-01 04:51:50

根据您显示 Thickbox 弹出窗口的方式,将有不同的方法来完成您想要的任务。

如果您使用 IFRAME 弹出窗口,则无法(据我所知)将值传递回父级。

如果您正在使用内联内容(我为此建议的建议),则在 Thickbox 隐藏内联内容后,该值仍然可供您使用。 然后,您可以使用 jQuery 访问用户填写的字段。

Depending on how you're showing the Thickbox popup, there are going to be different ways to accomplish what you want.

If you're using an IFRAME popup, there is no way (that I know of) to pass the value back to the parent.

If you're using inline content (what I would suggest for this purpose), the value will still be available to you after Thickbox hides the inline content. You can then use jQuery to access the fields that the user filled in.

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