我有一个可变数字(最初为8个)复选框,它们共享具有不同值的相同name
属性。但是它们被许多DOM元素分开。
例如:
<table>
<tr>
<td><input type='checkbox' name='site-1-local' value='1' checked></td>
</tr>
</table>
.
.
.
<table>
<tr>
<td><input type='checkbox' name='site-1-local' value='8' checked></td>
</tr>
</table>
通常情况下,我希望我的php脚本能够聚合通用名称并使用类似$_POST['site-1-local'] = array('1', ... '8')
的内容。但是,当我使用print_r()
断言值服务器端时,它仅在8
数组中显示$_POST['site-1-local']
(具有此名称的DOM中的最后一个值)。
我猜测非聚合与复选框并不是并排的?但是,我还没有找到关于这个主题的任何内容。