我对表单和 jQuery 有很大的问题。
<form name="doall" method="POST" action="test.php">
<input type="hidden" value="<?php echo $Sorder ?>" name="order" />
<input type="hidden" value="<?php echo $Ssort ?>" name="sort" />
<input type="hidden" value="<?php echo $form_id_venue ?>" name="form_id_venue" />
<input type="checkbox" name="objectSelected[]" value="<?php echo $userToRead[$j]['id'] ?>"/></td>
如果在 test.php 中print_r($_POST)
,我注意到该数组填充了除选择和复选框之外的每个输入值。
$_POST
不考虑复选框、单选和选择输入,只考虑文本和文本区域。
如果我禁用 jQuery,一切正常。为什么?