Serialize form not working in jQuery

后端 未结 7 1415
攒了一身酷
攒了一身酷 2020-12-24 00:06

Can you please take a look and help me realize where am I going wrong with this? Here is the jsfiddle link: http://jsfiddle.net/Hitman666/QcEkj/1/ but also here is that code

7条回答
  •  隐瞒了意图╮
    2020-12-24 00:53

    You have to give your form elements names!

    This is independent of jQuery. Every form element must have a name to be considered for form submission as successful control:

    A successful control is "valid" for submission. Every successful control has its control name paired with its current value as part of the submitted form data set. A successful control must be defined within a FORM element and must have a control name.

    jQuery just ignores those elements that don't have a name (or, depending on how it gets the elements, it might not even see them as the form itself has no reference to them).

提交回复
热议问题