我正在使用select2作为laravel 7.x的下拉列表输入...
<tbody>
<tr>
<td>
<x-selects.no-label id='rm_code[]' :option='App\Product::pluck("code","id")' default='null' placeholder='null' />
</td>
</tr>
</tbody>
我正在使用刀片组件
<div class="input-group mb-3">
{{ Form::select($id, $option, $default, ['class' => 'form-control selection move', 'name' => $id, 'id' => $id, 'placeholder' => 'Choose ..']) }}
</div>
@push('js')
<script>
$(document).ready(function() {
$('.selection').select2();
});
</script>
@endpush
我不会像这样从行1格式添加第二行动态输入重复的行
$('#table tbody').on('change', 'td', function(e) {
var data = dtable.row(this).nodes().to$().find('select[id="rm_code[]"]').val();
if (data) {
if (index == lenght - 1) {
dtable.row.add([
dtable.row(this).data()[0],
]).draw(false);
}
}
}
,但select2在第2、3、4和第3行上不起作用 如此