<td align="center"><input type="checkbox" name="checked_id[]" class="checkbox" value="<?php echo $id_student;?>"/></td>
<button type="button" class="btn btn-lg btn-success" onClick="window.location = 'edit.php?ktp=<?php echo $id_student; ?>'">EDIT</button
如何获取复选框的值以便在edit.php
等其他php页面上使用? Id_student = 3454
?我的结果可能与我选择的复选框值不同。
答案 0 :(得分:0)
我不确定我清楚地理解你的问题,但是根据我的理解,我希望这个例子有帮助
$.ajax( {
type: 'POST',
url: '/ajax/checkbox.php',
data: { foton : $('input:checkbox:checked').val()},
success: function(data) {
$('#message').html(data);
}
} );
/ajax/checkbox.php?name=foton
您有一个名为$_GET
的{{1}}参数,其值为name
。
您在名为foton
的{{1}} 参数中添加了复选框的值。
指定数据时,您不必在$_POST
网址中设置查询字符串(而不是想要重定向到将处理您的{{1}的网页参数一部分)。