zoukankan      html  css  js  c++  java
  • php checkbox复选框值的获取与checkbox默认值输出方法

    php获取 checkbox复选框值的方法,checkbox在php读取值时要用数组形式哦,我们读取这些值用php post获取是以一个array形式哦。
    php获取 checkbox复选框值的方法 
    复制代码代码如下:
    <html xmlns="http://www.jbxue.com/1999/xhtml"> 
    <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
    <title>php获取 checkbox复选框值的方法 - www.jbxue.com</title> 
    </head> 
    <body> 
    <form name="form1" method="post" action=""> 
    <label> 
    <input type="checkbox" name="checkbox[]" value="复选一"> 
    复选一 
    </label> 
    <label> 
    <input type="checkbox" name="checkbox[]" value="复选二"> 
    </label> 
    复选二 
    <label> 
    <input type="checkbox" name="checkbox[]" value="复选三"> 
    </label> 
    复选三 
    <label> 
    <input type="checkbox" name="checkbox[]" value="复选四"> 
    </label> 
    复选四 
    <label> 
    <input type="submit" name="Submit" value="提交"> 
    </label> 
    </form> 
    </body> 
    </html> 
    <? 
    if( $_POST ) 

    $value = $_POST['checkbox']; 
    echo '你选择了:'.implode(',',$value); 
    //由于checkbox属性,我们必须把checkbox复选择框的名字设置为一个如果checkbox[],这样php才能读取,以数据形式,否则不能正确的读取checkbox复选框的值哦。//脚本之家 jb51.net 整理 

    ?> 


    checkbox在php读取值时要用数组形式哦,我们读取这些值用php post获取是以一个array形式哦, 
    复制代码代码如下:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
    <title>php获取多选框checkbox值 - www.jbxue.com</title> 
    </head> 
    <body> 
    <?php 
    $area_arr = array(); 
    if($_GET['action']=="submit"){ 
    $area_arr = $_POST['area']; 

    echo "您选定的地区为: "; 
    foreach ($area_arr as $k=>$v){ 
    echo $v." "; 

    ?> 
    <form id="form1" name="form1" method="post" action="?action=submit"> 
    <p>河北 
    <label> 
    <input type="checkbox" id="area" name="area[]" value="河北"> 
    </label> 
    </p> 
    <p>河南 
    <label> 
    <input type="checkbox" id="area[]" name="area[]" value="河南"> 
    </label> 
    </p> 
    <p>山西 
    <label> 
    <input type="checkbox" id="area[]" name="area[]" value="山西"> 
    </label> 
    </p> 
    <p>山东 
    <label> 
    <input type="checkbox" id="area[]" name="area[]" value="山东"> 
    </label> 
    </p> 
    <p>江苏 
    <label> 
    <input type="checkbox" id="area[]" name="area[]" value="江苏"> 
    </label> 
    </p> 
    <p>浙江 
    <label> 
    <input type="checkbox" id="area[]" name="area[]" value="浙江"> 
    </label> 
    </p> 
    <p> 
    <label> 
    <input type="submit" name="Submit" value="提交"> 
    </label> 
    </p> 
    </form> 
    </body> 
    </html> 

    php checkbox默认选择问题(都是利用的这种原理) 
    复制代码代码如下:

    <input name="jbxue" type="checkbox" value="jiaju" <?php if($myrow[fujia_jiaju]) echo("checked");?>> 
  • 相关阅读:
    练习上传下载时遇到的问题
    el表达式遇到的问题
    js中for循环闭包问题记录
    随机排座位(模板) 20.10.17
    #STL:优先队列数据结构函数的用法 #堆 #优先队列数据结构(堆) #priority_queue 20.10.17
    关于int的范围
    #归并排序 归并排序的刷题记录 ~20.09.25
    #欧拉函数 ~20.8.27
    #排列 #组合 ~20.8.24
    105.七夕祭
  • 原文地址:https://www.cnblogs.com/linuxnotes/p/3422547.html
Copyright © 2011-2022 走看看