当用户提交表单时,如何提交到 iframe 并在主页上显示结果?
我正在让用户上传图片,我试图让他们在图片上传时完全停留在页面上。如何让表单提交到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要 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/
您可以在表单上使用目标属性。
You can use the target attribute on a form.