jquery序列化忽略类型="数字"字段

时间:2018-05-06 12:37:23

标签: jquery serialization field numeric

我一直试图解决这个问题,但没有成功,因此转向大脑,请告诉我。

我有一个很长的表单,我用jquery序列化提交到php脚本。

奇怪的是,它似乎正在跳过任何类型的字段=" number"

因此

<input type="number" class='form-control' id='a2-employedannualincome' name='a2-employedannualincome'>
如果我将其更改为

,则跳过

<input type="text" class='form-control' id='a2-employedannualincome' name='a2-employedannualincome'>

它完美地实现了。

由于缺少长向导类型表单中的字段,会出现什么问题?

1 个答案:

答案 0 :(得分:0)

感谢您的帮助,我发现了问题并且因为不记得我的代码而成了我的错!我有另一个插件用于序列化复选框值,并没有正确更改它以允许其他类型

https://tdanemar.wordpress.com/2010/08/24/jquery-serialize-method-and-checkboxes/