jquery ajax可以只告诉表单id吗
当我使用 jquery 发送 ajax 请求时,我指定一个 data
数组,就像
data: {param1: 'somevalue', param2: 'another value' }
我看到一些用 MooTools 1.2 编写的旧代码一样,MooTools 似乎可以按原样发送整个表单,而不需要一一指定字段。您只需为其提供表单 ID,在本例中为 theform
。
var theNewRequest = new Request.HTML({url:'ajaxpage.php'}).post($('theform'));
jquery中有类似的东西吗?
When I send ajax requests with jquery, I specify a data
array, like
data: {param1: 'somevalue', param2: 'another value' }
I saw some old code written in MooTools 1.2 and it seems MooTools makes it possible to send the whole form as is, without the need to specify the fields one by one. You just give it the form id, in this case theform
.
var theNewRequest = new Request.HTML({url:'ajaxpage.php'}).post($('theform'));
Is there something similar in jquery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
是的,您可以使用序列化函数来发送表单的序列化内容。
Yes, you can use the serialize function to send the serialized contents of the form.
$.post('somewhere',$('formid').serialize(), function(data){})
怎么样?How about
$.post('somewhere',$('formid').serialize(), function(data){})
?我几周前编写了这个脚本来简化 AJAX 表单提交:
我确信它可以得到显着改进,但只要您不需要文件输入支持,它就应该按原样工作。
要使用它,只需调用:
缩写形式为:
I wrote this script a couple weeks back to simplify AJAX form submission:
I'm certain it can be significantly improved, but it should work as-is as long as you don't require file input support.
To use it, simply call:
The short form is:
jQuery .serialize() 方法以标准 URL 编码表示法创建文本字符串。它对表示一组表单元素的 jQuery 对象进行操作。
http://api.jquery.com/serialize/
jQuery .serialize() method creates a text string in standard URL-encoded notation. It operates on a jQuery object representing a set of form elements.
http://api.jquery.com/serialize/