0

我每页有四行。直接解析的四行形成mysql表。每行都有一个复选框。我想知道选中了哪个复选框。在下面显示的代码中,它仅保存页面的第一行。因此,如果我选择第三行,它将显示为选择的第一行。我正在使用 onchange 方法来知道选择了某些东西,但我还不知道如何获得它。

有人可以帮忙吗?

<?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 function will be called when user checks a check box. 

function handleChange(cb) {

//get the selected category 
var category = document.getElementById('check').value; 
document.write(category); 
4

3 回答 3

1

看起来您的页面上有重复的 ID

如果每一行都有LABEL id="check",因为页面中的 ID 必须是唯一的,它总是会获得具有相应 ID 的第一个元素。

所以它永远是第一行..

而是尝试直接在您的事件中传递 this.value

onchange="handleChange(this.value);

function handleChange(cb) {

document.write(cb); 

这是一个不好的做法..所以先尝试修复重复 ID 的问题..

于 2012-11-03T20:44:58.653 回答
1

如果我正确理解您的问题,您想知道如何获取用户刚刚单击的复选框的类别(复选框的值)?

function handleChange(cb) {
  // get the selected category
  var category = cb.value;
  // ...
}

您通过 -param 将当前单击的复选框提供给handleChange-function cb。因此,如果您想获取此复选框的属性,只需查找cb-object 的属性即可。

于 2012-11-03T20:49:28.487 回答
0

您有多个具有相同 id 的行,这使您的 HTML 无效。为避免这种情况,您应该将 javascript 代码更改为

function handleChange(cb) {
//get the selected category 
var category = cb.value; 
document.write(category);
}
于 2012-11-03T20:54:17.067 回答