如果选中另一个复选框,如何取消选中复选框。
有人可以提供帮助吗?
感谢。
<?php
//limit for number of categories displayed per page
$limit = 4;
$categoriesNum= mysql_query("SELECT COUNT('categoryTopic') FROM categories");
//number of current page
$page =(isset($_GET['page']))? (int) $_GET['page'] :1;
//calculate the current page number
$begin =($page - 1)* $limit;
//number of pages needed.
$pagesCount =ceil(mysql_result ($categoriesNum,0)/$limit);
//Query up all the Categories with setting the Limit
$CategoryQuery = mysql_query ("SELECT categoryTopic From categories ORDER BY categoryTopic LIMIT $begin, $limit");
//Place all categories in an array then loop through it displaying them one by one
while ($query_rows = mysql_fetch_assoc($CategoryQuery))
{
$category =$query_rows['categoryTopic'];
//echo $category;
//query all the subcategories that the current category has
$Sub = mysql_query ("SELECT categoryTopic FROM subcategories WHERE categoryTopic='$category'");
$Count = mysql_num_rows ($Sub);
echo '<table width="85%" border="1" cellpadding="0"; cellspacing="0" align="center">
<tr>
<th width="23%" height="44" scope="col" align="left"> '.$query_rows['categoryTopic'].' <br><br><br></th>
<th width="24%" scope="col">'.$Count.'</th>
<th width="25%" scope="col"> 0 </th>
<th width="28%" scope="col"> <form name = "choose">
<label><input type="checkbox" id ="check" value= '.$category.' onchange="handleChange(this);"></label>
</tr>
</table>';
}
?>
<script type="text/jscript">
//this funciton will be called when user checks a check box.
function handleChange(cb) {
//get the selected category
var category = cb.value;
如果另一个被选中,我得到新的值,但同时检查两个框。
答案 0 :(得分:2)
如果您只希望一次检查一个,那么单选按钮似乎是更好的选择,但如果您想要一次或零,那么复选框就可以了。
您的代码目前正在生成无效的html,因为它为每个复选框提供了相同的id
。此外,您似乎在每行上创建了开放式<form>
代码,但没有匹配</form>
代码。
如果您为每个复选框指定一个公共class
属性:
<input type="checkbox" class="check" value= '.$category.' onchange="handleChange(this);">
...然后你的JS可以使用.getElementsByClassName()
来处理它们并取消选中除了刚检查的所有内容之外的所有内容:
function handleChange(cb) {
var cbs = document.getElementsByClassName("check");
for (var i = 0; i < cbs.length; i++)
if (cbs[i] != cb)
cbs[i].checked = false;
}
注意:对于要提交的所选值,您需要为复选框提供name
属性 - 与id
不同,name
可以针对多个元素重复。
答案 1 :(得分:1)
不要使用复选框,使用单选按钮,并为它们提供相同的name
。
答案 2 :(得分:1)
使用单选按钮?
<input type="radio" name="NAME" />
NAME
在您希望相互影响的所有单选按钮中的位置相同。
旁注:您当前的代码无效,因为它会生成多个具有相同ID(check
)的元素。