gpt4 book ai didi

php - Jquery - 检查复选框是否一次选中一个

转载 作者:行者123 更新时间:2023-12-01 07:01:31 27 4
gpt4 key购买 nike

基本上,我需要做的是运行一系列复选框,如果选中它,我需要使用 ajax 提交其值。现在我似乎找不到一种方法来一次运行每个复选框。这是我页面上的代码。

$(document).ready(function(){
$('#submit').click(function(){

});
});

<?php
/**
* Include vB core.
*/
require_once('./global.php');
require_once(DIR . '/includes/functions_bigthree.php');
require_once(DIR . '/includes/functions_forumlist.php');

/**
* Grab the divisions from the database.
*/
$query = $db->query_read("SELECT division FROM rollcall_divisions");
while($array = $db->fetch_array($query)){
echo "<input type='checkbox' value=".$array[division].">".$array[division]."<br>";
}
?>

<input type="submit" id="submit">

最佳答案

您可以使用:checkbox过滤器选择器和 each像这样:

$('#submit').click(function(){
$(':checkbox').each(function(){
if ($(this)).is(':checked') {
// your code....
}
});
});

:checkbox 定位页面上的所有复选框,然后使用 each 遍历每个复选框。稍后,在条件 is 中与 :checked 过滤器选择器一起使用,以了解实际选中了哪些复选框。

关于php - Jquery - 检查复选框是否一次选中一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3419852/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com