Я использую повторитель jquery для создания динамической формы.
<div class="repeater">
<table border="1">
<thead>
<tr style=>
<th>ID</th>
<th>Name</th>
</tr>
</thead>
<tbody data-repeater-list="data">
<tr data-repeater-item>
<td><input name="this_id" value="1"></td>
<td><input name="this_name"></td>
</tr>
</tbody>
</table>
<button data-repeater-create>Add New</button>
</div>
<script>
$('.repeater').repeater();
/* Not working if use below code :
Reference : https://github.com/DubFriend/jquery.repeater
$('.repeater').repeater({
defaultValues: {
'this_id': '1'
}
});
*/
</script>
Когда я нажимаю кнопку «Добавить новый», почему значение по умолчанию для this_id не отображается (пустое значение). Что-то не так с моим кодом?
ОБНОВЛЕНИЕ:
https://jsfiddle.net/b6tryg9m/