search
HomeBackend DevelopmentPHP Tutorial怎样才能获取checkbox选择的值?
怎样才能获取checkbox选择的值?Jun 20, 2016 pm 12:44 PM
How can I get the value selected by the checkbox?


 
这是前台页面,其中“所在部门”和“副职姓名”是jquery从另一个页面get的数据,返回的就是下面的checkbox。我试了一下,从这个页面用js好像找不到这些checkbox,所以只有用php来做了,但是做不出来,下面是部分代码:user是checkbox的name。  
 
$user=$_POST['user'];  
$arr=array();  
$darr=array();  
$darr=  array_diff($arr,$user);  
            if(!empty($user)){  
                 for($i=0;$i if($user=="checked")
//echo "<script>alert('dfh')</script>";  
                $db->query("update members set fuchu='".$_POST['fuchu']."' where uid='".$user[$i]."'");  
                }   
            }  
             
            if(!empty($darr)){  
                for($j=0;$j<=count($darr);$j++){
$rowf=$db->get_one("select * from members where fuchu=".$_POST['fuchu']);  
                    if($darr[$j]==$rowf['uid'])  
                        unset($darr[$j]);  
                    else  
                        $db->query("update members set fuchu='0' where uid='".$darr[$j]."'");  
                }  
            }  
 
我是用的array_diff方法,将选中的和没选中的checkbox区分开来。但是我试了好多遍,主要问题是$_POST['user']返回的是点击的数据,无论是否选中,这样的话如果原来是选中的,我想取消选中的话就做不到,如何能挑出取消选中的数据?

回复讨论(解决方案)

请贴出 html 代码,以甄别数据是以何种方式提交的  
 
或者你 print_r($_POST); 贴出结果


请贴出 html 代码,以甄别数据是以何种方式提交的  
 
或者你 print_r($_POST); 贴出结果


 
 
print_r($_POST); 显示的结果是两个select的值,没什么用。  
Array ( [depart] => 2 [fuchu] => 112 [submit] => 提交 )  
 
这是获取checkbox的jquery代码  
 //city onchange  
            $('#fuchu').change(function() {     
              var city = $(this).val();  
              var province=$("#depart").val();  
              $.get("getdepart.php", {category:'user', city:city,province:province}, function(data) {     
                $('#result').html(data);     
                //alert (data);  
              });     
            });   
 
这是html代码  
if($_REQUEST["city"]!=""){  
            $sql="select * from members left join userclass on members.flag=userclass.flagid where admitright=4 and groupid=".$_REQUEST['province'];  
            $result=$db->query($sql);  
            $str="";  
            if ($db->num_rows($result) > 0) {  
                while ($row =$db->fetch_array($result)) {  
                    if($row['fuchu']==$_REQUEST['city']){  
                        $str.= $row['username'];  
                        $str.= " ";  
                    }else{  
                        $str.= $row['username'];  
                        $str.= " ";  
                    }  
                      
                      
                }  
              }  
                
              mysql_free_result($result);   
        }

提交的数据 Array ( [depart] => 2 [fuchu] => 112 [submit] => 提交 ) 中并没有 user 项  
没有被提交,那自然也就无法处理  
 
#2 下半部只是 php 生成复选框串的代码,并不表示复选框就一定放进表单里去了


提交的数据 Array ( [depart] => 2 [fuchu] => 112 [submit] => 提交 ) 中并没有 user 项  
没有被提交,那自然也就无法处理  
 
#2 下半部只是 php 生成复选框串的代码,并不表示复选框就一定放进表单里去了


 
那为什么print_r($user)和print_r($darr)有数据?


提交的数据 Array ( [depart] => 2 [fuchu] => 112 [submit] => 提交 ) 中并没有 user 项  
没有被提交,那自然也就无法处理  
 
#2 下半部只是 php 生成复选框串的代码,并不表示复选框就一定放进表单里去了


 
那这样的页面形式用什么办法更合适一些?

你是这样使用提交的数据的:$user=$_POST['user'];  
如果 print_r($_POST); 只显示 Array ( [depart] => 2 [fuchu] => 112 [submit] => 提交 )  
你怎么去用 $user ???


你是这样使用提交的数据的:$user=$_POST['user'];  
如果 print_r($_POST); 只显示 Array ( [depart] => 2 [fuchu] => 112 [submit] => 提交 )  
你怎么去用 $user ???


 
我这段代码是在if(isset($_POST['user'])中的,里面的代码可以运行


你是这样使用提交的数据的:$user=$_POST['user'];  
如果 print_r($_POST); 只显示 Array ( [depart] => 2 [fuchu] => 112 [submit] => 提交 )  
你怎么去用 $user ???


 
知道了,只有选中checkbox之后才有内容:  
Array ( [1] => 117 ) Array ( [depart] => 2 [fuchu] => 112 [user] => Array ( [0] => 124 ) [submit] => 提交 )  


你是这样使用提交的数据的:$user=$_POST['user'];  
如果 print_r($_POST); 只显示 Array ( [depart] => 2 [fuchu] => 112 [submit] => 提交 )  
你怎么去用 $user ???


 
现在的问题是取消选中没反应?

复选框没有选中,是不会提交的  
也就是说,$_POST['user'] 是否有值是要分别处理的


复选框没有选中,是不会提交的  
也就是说,$_POST['user'] 是否有值是要分别处理的


 
但是我用array_diff语句处理后的结果并不是我想要的,不知道哪里出错了,帮忙看看,谢谢了

你是说 $darr=  array_diff($arr,$user); 这个?  
你的 $arr 是一个空数组,不管 $user 数组中有多少元素  
$darr 都是空数组,不知道你要这样做的原因


你是说 $darr=  array_diff($arr,$user); 这个?  
你的 $arr 是一个空数组,不管 $user 数组中有多少元素  
$darr 都是空数组,不知道你要这样做的原因


 
我换了种方式,把checkbox写到前台,不从后台get了,现在又遇到点问题:  
 
$("#btnSubmit").bind("click", function () {  
                var result = new Array();  
                  
                $("[name = user]:checkbox").each(function () {  
                    if ($(this).is(":checked")) {  
                        result.push($(this).attr("value"));  
                    }  
                });  
                  
                $("#hdtxt").val(result.join(","));  
                 var userid=;  
                $("#hdfuchu").val(userid);  
                //alert($("#hdtxt").val());  
                alert(userid);  
                  
            });  
 
一加上红字这段select就没反应了,删除掉就可以,这是为什么?我在上面echo $userid,可以看到是有值的。而如果把$userid换成一个数字就可以运行,咋回事?


你是说 $darr=  array_diff($arr,$user); 这个?  
你的 $arr 是一个空数组,不管 $user 数组中有多少元素  
$darr 都是空数组,不知道你要这样做的原因


 
帮忙看看呗,这个项目的最后一点问题了

换一种方式解决了,但是还是不明白为什么$_GET来的变量无法赋值到jquery中。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!