gpt4 book ai didi

jquery - 显示每个中继器项目的值

转载 作者:行者123 更新时间:2023-12-01 08:36:00 28 4
gpt4 key购买 nike

我使用 jquery Repeater 创建动态表单。

<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/

最佳答案

您没有在输入元素上设置 type="text"。这是一个工作示例:

$('.repeater').repeater({
defaultValues: {
'this_id': '1',
'this_name': 'foo'
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.repeater/1.2.1/jquery.repeater.min.js"></script>
<div class="repeater">
<table border="1">
<thead>
<tr style="background-color:#cecece">
<th>ID</th>
<th>Name</th>
</tr>
</thead>
<tbody data-repeater-list="data">
<tr data-repeater-item>
<td><input type="text" name="this_id" value="1"/></td>
<td><input type="text" name="this_name"/></td>
</tr>
</tbody>
</table>
<br>
<button data-repeater-create>Add New</button>
</div>

关于jquery - 显示每个中继器项目的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55214401/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com