搜索表格中的选定选项

时间:2018-05-08 12:34:38

标签: jquery html ajax datatable datatables

我使用dataTable类,它在表格的顶部显示了show和search的选项。

当我尝试添加ajax以便我可以从下拉菜单中选择新选项时,搜索无效。

<tr role="row" class="odd">
    <td class="">
      <input type="text" id="row-1-age" name="row-1-age" value="John">
    </td>
    <td class="">
      <input type="text" id="row-1-age" name="row-1-age" value="Smith">
    </td>
    <td class="sorting_1">
     <input type="text" id="row-1-position" name="row-1-position" value="123">
    </td>
    <td>
     <select size="1" id="row-1-office" name="row-1-office">
       <option value="Active" selected="selected"> Active </option>
       <option value="Deactive"> Deactive </option>
       <option value="Delete"> Delete </option>                                      
     </select>
    </td>
</tr>

当代码是这样时,搜索选项卡工作正常,但我无法更改下拉列表的选项。 当我添加 在选项之前可以选择该选项,但搜索不起作用。

0 个答案:

没有答案