我有一个bootstrap datatable-basic,只有几页。 在表格的第一个单元格中是一个复选框。
该表看起来像只有几行。
<table class="table datatable-basic table-hover" >
<thead>
<tr>
<th>Status</th>
<th>Keyword</th>
<th>Suchvolumen</th>
</tr>
</thead>
<tbody>
<tr>
<td> <input type="checkbox" id="checkboxManuellerStatus1" name="checkboxManuellerStatus[1]" value="abc"> abc</td>
<td class="keywordDataStyle">abc</td>
<td>abc</td>
</tr>
<tr>
<td> <input type="checkbox" id="checkboxManuellerStatus2" name="checkboxManuellerStatus[2]" value="abc2"> abc</td>
<td class="keywordDataStyle">abc</td>
<td>abc</td>
</tr>
</tbody>
所有复选框均具有递增的名称和ID。 checkboxManuellerStatus1,checkboxManuellerStatus2,checkboxManuellerStatus3等。
如果我在php中请求复选框,则将获得所有已选中复选框的值。
$array = $_REQUEST['checkboxManuellerStatus'];
那很好,除了我只获得表中当前页面的值,但我需要所有页面的所有值。我该怎么办?
谢谢