Serialize form not working in jQuery

后端 未结 7 1417
攒了一身酷
攒了一身酷 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 01:13

    Something else that prevents serializeArray() from serializing properly is disabled inputs. serializeArray does not serialise disabled inputs, in much the same way that disabled inputs are not submitted with the form.

    A successful control is "valid" for submission.

    • Controls that are disabled cannot be successful.

    Source

    0 讨论(0)
提交回复
热议问题