jQuery serializeJSON和选择列表

时间:2014-10-08 07:17:47

标签: javascript jquery html single-page-application jsonserializer

我有一个包含文本输入,范围滑块和简单选择列表的表单:

<label for="select-choice-1" class="select" id = "selectionString" >select field:</label>
<select id="a"></select>
<label for="select-choice-2" class="select" id = "selectionString">select profession:</label>
<select id="b"></select>
<label for="select-choice-3" class="select" id = "selectionString">select experience (in years) :</label>
<select id="c"></select> 

选择列表获取的数据来自javascript文件:

var fields = {"HT":"HI-TEC","MK":"marketing","FE":"Finance&Economics"};

我的问题是serializeJSON()函数不包含里面的选择列表(所有其他字段都没问题),我可以手动添加这个,但有人有一个黄油方式来做到这一点? 选择所有字段后,clicklistener将启动。 序列化函数:

var workerInfo = $( "#workerForm" ).serializeJSON(); 

0 个答案:

没有答案