jquery 是否可以提交表单并加载另一个具有相关表单的相关页面?
所以,我有4个asp页面。
第一个从用户获取数据并将其保存在会话变量中。
第二个用于上传图片。
第三个用于裁剪该图片(并保存裁剪后的图像)。
第四个是确认页面,并将数据保存到数据库中。
是否可以使用jquery“链接”来自不同页面的所有这些表单?您知道有关如何执行此操作的任何教程吗?
我在网上找到的只是提交表单,然后打开回复消息。我想加载页面中的其他表单,而不刷新页面,或者可能在覆盖层中完成这一切。
谢谢。
So, I have 4 pages in asp.
The first one gets the data from a user and saves it in a session variable.
The second one is used to upload a picture.
The third one is used to crop that picture (and save the cropped image).
The fourth is a confirm page and saves the data into a database.
Is it possible to "chain" all those forms from different pages using jquery? Do you know any tutorial on how to do that?
All I found in the web is to submit a form and then open a response message. I want to load the other form in the page, without the page refresh, or maybe do it all inside an overlay.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 $.ajax() 推送表单中收集的信息,然后拉取下一个表格。
编辑:在这里我找到了更好的jQuery表单向导
希望它有帮助。
You could use $.ajax() to push the information gathered in the form and then pull the next form.
Edit: Here i found something better jQuery Form Wizard
Hope it helps.