无法使用jquery获取表单中选择字段的值

时间:2016-05-04 08:25:51

标签: javascript jquery html forms jquery-selectbox

我想在提交按钮上获取表单中所有元素的值。我在表单中序列化数据但由于某些原因我在序列化数据中不理解选择字段中所选选项的值不包含在那里。

这里是Js fiddle

我的表单如下:

<form id='foo'>
      <p>
        <label>Message</label>
        <textarea id='message' name='message' rows='5'></textarea>
      </p>
      <br/>
      <p>
           <label>Name</label>
           <select id = "name">
             <option value = "1">one</option>
             <option value = "2">two</option>
             <option value = "3">three</option>
             <option value = "4">four</option>
           </select>
        </p><br/>
        <div id='success'></div>
        <button type='submit'>Send</button>
    </form>

    <p id="showdata">

    </p>

在提交此表单时,我会处理一些jquery代码。它看起来像这样:

// Bind to the submit event of our form
$("#foo").submit(function(event){

    // Abort any pending request
    if (request) {
        request.abort();
    }
    // setup some local variables
    var $form = $(this);

    // Let's select and cache all the fields
    var $inputs = $form.find("input, select, button, textarea");

    // Serialize the data in the form
    var serializedData = $form.serialize();
    $('#showdata').html(serializedData);

});

有人可以帮我理解我的问题在哪里!提前谢谢。

3 个答案:

答案 0 :(得分:1)

表单处理名称,而不是ID属性。给你选择元素一个名称值,它将起作用。

答案 1 :(得分:1)

您的代码似乎正确但您有错误。 查看select,它没有属性name。因此,$form.serialize()不适用于此元素。

通过添加属性名称来选择

来解决此问题
<form id='foo'>
  <p>
    <label>Message</label>
    <textarea id='message' name='message' rows='5'></textarea>
  </p>
  <br/>
  <p>
       <label>Name</label>
       <select name="test">
         <option value="1">one</option>
         <option value="2">two</option>
         <option value="3">three</option>
         <option value="4">four</option>
       </select>
    </p><br/>
    <div id='success'></div>
    <button type='submit'>Send</button>
</form>

<p id="showdata">

</p>

更多信息:Form Serialize

答案 2 :(得分:0)

如果您在select元素中使用 $form.serialize() ,则应在其中添加属性名称,因为 $form.serialize() 将从属性名称

<强>更新

https://jsfiddle.net/drhe1L9u/

添加属性名称以选择元素