在我的HTML我有這個,將值數組作爲發佈數據傳遞給document.forms []。method?
<tr>
<td class="grid_cell" width="5%">
<input type="checkbox" name="workspace_trees_rpt_target" id="<?php echo $t["tree_id"];?>" value="<?php echo $t["tree_id"];?>" />
</td>
</tr>
這是一個循環裏面有啥將顯示爲很多具有不同值的複選框。而在我的劇本我都這樣了,
if(confirm("Delete cannot be undone, click OK button to proceed.")) {
document.forms[0].method="POST";
document.forms[0].action="delete.php";
document.forms[0].submit();
}
選擇兩個複選框,並單擊確定按鈕後,然後我去delete.php
到print_r
我的帖子的數據。但是當顯示print_r
的結果時,它只顯示了一個選中的複選框的值,但我期待着其中的兩個。我怎麼能這樣做,當我檢查多個複選框時,複選框的發佈數據將是選中複選框的值的數組?