使用 jquery POST php 表单
我需要任何 jQuery 代码来发送表单数据而不刷新页面。
方法(POST):提交表单后显示“正在加载...”消息或“正在加载图像”。如果 process.php = 1 (true) 隐藏表单并显示 ok 消息,如果 process.php = 2 ( false ) 则不隐藏表单并显示任何错误消息。
I need any jQuery code to send form data without refreshing the page.
Method (POST): after submit form show "loading..." message or "loading image". If process.php = 1 (true) hide form and display ok message, and if process.php = 2 ( false ) not hide form and display any error message.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
进程.php:
process.php:
您需要添加表单 ID 或任何其他标识符。
所以,如果你的表单是
jQuery:
现在,提交表单后,你会在发布“process.php”时收到消息“loading ...”,然后如果 process.php 返回 1,表单将隐藏并显示 OK,否则你会得到一个错误信息。
You need to add form ID or any other identificator.
so, if your form is
jQuery:
now, after submit form you will get message "loading ..." while posting "process.php", then if process.php returns 1 the form will be hide and display OK else you get an error message.