Home > php教程 > PHP开发 > body text

Analysis of checkbox selection problem based on jQuery

高洛峰
Release: 2016-12-06 14:13:34
Original
1504 people have browsed it

The example of this article analyzes the checkbox selection problem based on jQuery. Share it with everyone for your reference, the details are as follows:

I encountered a very strange problem recently when developing a project, that is, whether to select all or not select all in the checkbox
Using the jQuery framework. I have always used

//检测选中的checkbox
$('input[name="abc"]:checked').each(function(){})
Copy after login

However, I found that when I need to select all, I use

$('input[name="abc"]').attr('checked',true);
$('input[name="abc"]').attr('checked',false);
Copy after login

. It works when loading for the first time. Clicking it again will only show itself
But when I click When I checked the source code, I found that the checked attribute had been added. I was puzzled. Finally, I found out that it was the attr attribute. For checked, it would not change the dom style, but would only change its attribute value. jquery provided The alternative method is as follows

$('input[name="abc"]').prop('checked',true);
$('input[name="abc"]').prop('checked',false);
Copy after login

However, the problem comes again. When not selecting all, I can’t detect which element is clicked, and then I make a fuss about the name

$('input[name="abc[]:checked"').each(function(i){});
//或者
$('input[name="abc[]"').each(function(i){
  var flag = $(this).prop('checked');
  if(flag){
   //$(this) 即为选中元素
 }
})
Copy after login

problem solved.


Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!