我有这个表单,它使用 jquery 加载函数加载详细信息,这里是表单
<form id="form1" name="form1" method="post" action="">
<div id="tableBg">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="list">
<thead>
<tr>
<th width="39%" scope="col">WHITE LIST</th>
<th width="61%" scope="col"> </th>
</tr>
</thead>
</table>
<div style="max-height:400px; overflow-y:auto">
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="list">
<tr class="sub_head">
<td scope="col"><strong>REG. NO.</strong></td>
<td scope="col"><strong>STUDENT NAME</strong></td>
<td scope="col"><strong>GRADE</strong></td>
<td scope="col"><strong>MESSAGE ID</strong></td>
</tr>
<tbody></tbody>
</table>
</div>
<div id="PageFooter">
<input type="submit" name="save_result" id="save_result" value="Save Results" />
</div>
</div>
</form>
并从另一个页面加载下面的代码
do{
?>
<tr <?php echo (($x%2) != 0) ? '' : ' class="alternate-row row"' ?>>
<td scope="col"><?php echo $learners['reg_no'];?></td>
<td scope="col"><?php echo $learners['surname']." ".$learners['full_names']." (".$learners['nickname'].")";?></td>
<td scope="col"><?php echo $learners['grd']." ".$learners['grade_section'];?></td>
<td scope="col">
<input name="sms_id[<?php echo $learners['reg_no']; ?>]" type="text" size="3" />
</td>
</tr>
<?php $x++;}while($learners = $getLearners->fetch());
此代码在表单中,底部有一个提交按钮。这被发布到一个 process.php 中,使用以下代码打印一些输出
if(isset($_POST['submit'])){
foreach($_POST['sms_id'] as $reg=>$msg_id){
echo $reg. " / ".$msg_id;
}
}
如果表单直接从表单发布到 process.php,则上面会显示这两个值
但我想使用 ajax 并尝试了以下不起作用的代码。只是发布 $msg_id 而不是其他值。
var formData = $("#form1").serializeArray();
$.ajax({
url: "models/process.php",
type: "POST",
data: formData,
success: function(data)
{
alert(data);
}
});
此代码不起作用有人可以帮忙吗?提前致谢。
JDK