我正在召开一次网络应用会议,但我遇到了问题。首先,您选择一位教师去一张桌子,在那里您可以看到哪些约会仍然是免费的。
该表填充了复选框,其中parrents可以选择他们想要约会的时间。所有占用时间都禁用其复选框。
这是我用于复选框的代码:
<table width="1100" border="1">
<tr>
<th style="text-align:center; padding:0 10px">Tijdstip</th>
<th style="text-align:center; padding:0 10px">Bezet?</b></th>
<th style="text-align:center; padding:0 10px">Commentaar</b></th>
</tr>
<form method = "post" action = "toevoegen.php">
<?php while ($record = mysqli_fetch_array($bezet)) { ?>
<tr>
<td><?php echo $record['start']; echo " "; echo $record['einde'];?></td>
<td>
<?php
$teller = $teller+1;
?>
<input type='checkbox' name='bezet' id='bezet' value="<?php $record['sequence'] ?>" onChange="this.form.submit(this)"
<?php if($record['bezet'] == 1 && $record['leerkracht_id'] == $_SESSION['lk']){ ?>
checked="checked"
disabled="disabled"
<?php } ?>
/>
</td>
<td><?php if($record['bezet'] == 1 && $record['leerkracht_id'] == $_SESSION['lk']){
echo "Bezet";
} ?></td>
</tr>
<?php } ?>
</form>
</table>
&#13;
当您点击复选框时,您将被重定向到下一页,您将在其中填写您的姓名和孩子的姓名。现在为了使应用程序正常工作,我必须通过parrent选中复选框来获取最后一页上的复选框,以便其他人无法花时间。
我怎么能这样做?
Anny的帮助表示赞赏,并提前致谢。
答案 0 :(得分:0)
试试这个:
alert($('input[type="checkbox"]:checked').last().val());
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="checkbox">
<input type="checkbox" checked value="1">
<input type="checkbox" checked value="2">