作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
基本上,我需要做的是运行一系列复选框,如果选中它,我需要使用 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/
我是一名优秀的程序员,十分优秀!