我有这个动态生成输入字段的脚本
$(document).on("click", ".if_married_add_fields", function(e){
$("#if_married_table tbody").append('<tr><td><input type="text" name="children[]" class="form-control" placeholder="Children name" required/></td><td><input type="text" name="type_of_delivery[]" class="form-control" placeholder="Type of delivery" required/></td><td><input type="text" name="date[]" class="form-control date_picker" placeholder="date" readonly required/></td></tr>');
e.preventDefault();
});
然后这个表格将放置生成的输入字段
<table class="table-bordered table" style="min-height: 150px;" id="if_married_table">
<thead>
<tr>
<th class="text-align_center">Name of Child/Children</th>
<th class="text-align_center">Type of Delivery</th>
<th class="text-align_center">Dates</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
在我的表结构中我有这个:
id (auto increment, int, primary), children (varchar 250), type_of_delivery (varchar 250), date (varchar 250)
所以,如果我在保存和保存时循环请求数据,它应该在数据库中看起来像这样
1,儿童1,分娩类型1,2015-10-10 2,儿童2,分娩类型2,2015-10-11 3,孩子3,分娩类型3,2015-10-12假设我已经为每个列标识添加了3行输入字段,然后将其成功保存到数据库中。
任何想法,线索,帮助,建议,取悦它?