复选框使用onchange

时间:2012-10-30 16:18:50

标签: php ajax

我有动态生成的复选框,当选中复选框时,onchange方法工作正常,当用户取消选中该框时,我的函数也被调用onchange方法调用我的预期函数问题是当框是检查页面的一部分变为活动状态是好的,但是当用户取消选中该复选框时,该部分页面再次变为活动状态,并且复选框“已检查”的值在第一次检查后保持为是。有没有办法检测用户何时选择取消检查,以便页面的活动部分变为非活动状态。

她是我的代码

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" method="post" action="activateImages.php">
            <input type="checkbox" value= "5" onChange="window.edit()" </form></th>
        </tr>
    </table>';
    }
    ?>

Java代码:

<script type="text/jscript">
//this funciton will be called when user checks a check box. 
function edit(){


     //get selected category from the form 
    //var formName = 'choose';
    //var Category = document[formName]['choose'].value;


    //check if browser suports ajax
    var xmlhttp = null;      
    if(typeof XMLHttpRequest != 'udefined'){
      xmlhttp = new XMLHttpRequest();
    }

    else if(typeof ActiveXObject != 'undefined'){
        xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
    }

    else 
        throw new Error('You browser doesn\'t support ajax');


    //open connection with activateImages.php to recieve the active images as an acho
    xmlhttp.open("GET", "activateImages.php",true);         

    //echeck if ready to recieve        
    xmlhttp.onreadystatechange = function (){

    if(xmlhttp.readyState == 4)
      window.activate(xmlhttp);
    };

    xmlhttp.send(null);
    }

    //recieve the active images then insert them in the specified location of the page. 
    function activate(xhr){

        if(xhr.status == 200){
            document.getElementById('images').innerHTML = xhr.responseText;

        }
        else 
            throw new Error('Server has encountered an error\n'+
            'Error code = '+xhr.status);

}

</script>

1 个答案:

答案 0 :(得分:0)

发布表单时,未检查的复选框不会发送到服务器。因此,除非您在javascript中明确发送空值,否则不应检查该值,而是检查它是否已设置:

if (isset($_POST['checkbox'])) {

除此之外,代码和伪代码混合中存在多个错误,例如未关闭的html标记,复选框缺少名称属性,分配而不是比较等。

编辑:您似乎还没有向服务器发送任何内容,而且您正在混合使用GET(javascript)POST(删除了php代码)。