通过 jquery/ajax 在表单提交中传递数据
我想使用 jquery/ajax 提交一个包含大约 10 个输入的表单,但我不知道如何通过 ajax 的数据参数将数据传递给它。我应该序列化它们吗?
i want to submit a form with about 10 input using jquery/ajax,but i don't know how can i pass the data to it through data parameters of ajax.should i serialize them ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
jQuery.serialize 会对您有所帮助。对要提交的表单的所有字段使用
name
属性非常重要。对应的代码可以是下面这样The jQuery.serialize can be helpful for you. It is important that you use
name
property for all fields of the form which you want to submit. The corresponding code can be about the following这是最简单的使用方法。这只会将两个 post 变量 $_POST['n'] 和 $_POST['e'] 发送到handle.php。如果您的 ajax 位于名为 send() 的函数中,您的表单将如下所示:
Here is the simplest way to use it. This would just send two post variables, $_POST['n'] and $_POST['e'], to handle.php. Your form would look like this if your ajax is in a function called send():