jQuery SerializeArray() 所有:输入
SerializeArray() 仅适用于输入和文本区域。选择、复选框和单选按钮怎么样?我需要知道从选择框中选择了哪个选项以及是否选中了复选框。我们如何才能在数组中获取所有这些信息。
Does serializeArray() only work on input and textarea. how about select, checkbox, and radio buttons. I need to know which option is selected from select box and whether checkbox is checked or not. How can we get all this info in an array.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该序列化所有输入、选择、复选框等...我注意到您的某些元素缺少名称,这可能就是您没有看到所有元素被序列化的原因。
像这样的东西应该正确序列化。这是
serializeArray()
的文档。It should serialize all inputs, select, checkboxe etc...I noticed you were missing names on some of your elements, that could be why you are not seeing all elements being serialized.
Something like this should serialize correctly. Here's the Documentation for
serializeArray()
.