JSPX 表单提交给 PHP
是否可以将 JSP/JSPX 表单提交到 PHP 文件?
然后 PHP 文件将负责验证和数据库更新。之后,它将向相同的 JSP/JSPX 表单发送某种响应。此外,这应该使用 jQuery 在 AJAX 中完成。
我该如何做到这一点以及需要哪些基本概念?
谢谢!
Is it possible to have a JSP/JSPX form to submit to a PHP file?
The PHP file will then be in charge of validation and database update. After that it will send a sort of response to the same JSP/JSPX form. Also this should be done in AJAX using jQuery.
How can I do that and what are the underlying concepts needed?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的情况不需要任何具体内容。只需使用 jQuery 通过 Ajax 将表单提交到 PHP 页面,并在 JavaScript 中处理结果。所有必需的代码都将在 JavaScript 中的客户端,并在 JSP 页面生成的纯 HTML 上运行。唯一的限制/问题可能是这两个页面在不同的域上运行。
You don't need anything specific in your case. Just submit the form via Ajax using jQuery to the PHP page and process the result in JavaScript as well. All the code necessary for that will be client side in JavaScript and operate on the plain HTML generated by the JSP page. The only restriction/problem might be if these two pages run on different domains.