当用户提交表单时,如何提交到 iframe 并在主页上显示结果?

发布于 2024-11-08 17:42:35 字数 76 浏览 0 评论 0原文

我正在让用户上传图片,我试图让他们在图片上传时完全停留在页面上。如何让表单提交到 iframe 或其他东西并上传图片然后返回无论是否成功?

I'm having a user upload a picture, I'm trying to allow them to stay completely on the page when the picture uploads. How can I have the form submit to an iframe or something and upload the picture then return whether it was successful or not?

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

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

发布评论

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

评论(2

早乙女 2024-11-15 17:42:35

您不需要 iframe,只需执行 Ajax 表单提交即可。

然后在服务器端就可以上传并返回是否成功。

http://api.jquery.com/submit/

你可能最好使用像 uploadify 这样的东西
http://www.uploadify.com/

You don't need an iframe for that, you just need to do an Ajax form submit.

Then on the server side, you can upload it and return whether or not it was successful or not.

http://api.jquery.com/submit/

You might be better off using something like uploadify
http://www.uploadify.com/

叶落知秋 2024-11-15 17:42:35

您可以在表单上使用目标属性。

<form method="post" action="handler.php" target="my_iframe">
...
</form>
<iframe name="my_iframe"></iframe>

You can use the target attribute on a form.

<form method="post" action="handler.php" target="my_iframe">
...
</form>
<iframe name="my_iframe"></iframe>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文