1
我创建了一系列复选框,我想知道是否可以从中获取值和id元素。举例来说,如果我有一个HTML表单以下复选框:我可以从复选框中获取“id”和“value”元素吗?
<html>
<body>
<form action="formInput.php" method="post">
<table border="1" width="100%">
<thead><p style="font-family:Arial" style="font-size:15px">This is my Form.</p></thead>
<tr>
<td width="33%" ><input type="hidden" id="item_1" name="interventions[]" value="false" />
<input type="checkbox" id="item_1" name="interventions[]" value="true" /> Item 1</td>
<td width="33%"><input type="hidden" id="item_2" name="interventions[]" value="false" />
<input type="checkbox" id="item_2" name="interventions[]" value="true" /> Item 2</td>
<td width="33%"><input type="hidden" id="item_3" name="interventions[]" value="false" />
<input type="checkbox" id="item_3" name="interventions[]" value="true" /> Item 3</td>
</tr>
</table>
</body>
<html>
,才有可能有一个对id元素或foreach循环?
由于提前,
-Kenny