刷新的时候jquery获取checkbox是否为选中和设置选中

$(document).ready(function(){
    $(‘.uninstall_list_checkbox‘).click(function(){
        if($(this).parent(‘.uninstall_list‘).children(‘input‘).attr("checked")==true){ //判断是否选中
            $(this).parent(‘.uninstall_list‘).children(‘input‘).attr(‘checked‘,false); //设置未选中
        }
        else
        {
            $(this).parent(‘.uninstall_list‘).children(‘input‘).attr(‘checked‘,true);
        }
        /*if (!$(this).hasClass("checked")) { //判断是否有class为checked
            $(this).addClass("checked");   //添加class
            $(this).parent(‘.uninstall_list‘).children(‘input‘).attr(‘checked‘,true);  //设置复选框选中
        }
        else {
            $(this).removeClass("checked");
            $(this).parent(‘.uninstall_list‘).children(‘input‘).attr(‘checked‘,false);
        }*/
    });
});

判断checkbox是否为选中还有这种方法:

if($(this).parent(‘.uninstall_list‘).children(‘input‘).is(":checked"));

设置就是:$(this).parent(‘.uninstall_list‘).children(‘input‘).attr(‘checked‘,false);

时间: 2024-10-05 06:44:00

刷新的时候jquery获取checkbox是否为选中和设置选中的相关文章

jquery获取checkbox被选中的值

只用一个循环,就可以找出被选中的checkbox的值 var s; $("[name = b]:checkbox").each(function () {                   if (this.checked) {                       s += $(this).val() + "|";                   }               });alert(s); 这样就可以了 jquery获取checkbox被

jQuery获取checkbox选中的值

1.问题背景 有几个多选框,选择其中的几个,获取选中的值 2.设计源码 <!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>

jQuery实现checkbox(复选框)选中、全选反选代码

谁都知道 在html 如果一个复选框被选中 是 checked="checked". 但是我们如果用jquery alert($("#id").attr("checked")) 会提示您是true而不是checked 所以很多朋友判断  if($("#id").attr("checked")=="true") 这个是错误的,其实应该是 if($("#id").attr

Jquery获取checkbox属性checked为undefined

说明:本文来自新浪博客,因为无法收藏,故直接copy过来备注,以后好查询 原网址:http://blog.sina.com.cn/s/blog_6810dfc20101jddq.html 使用jQuery v1.10.2获取checkbox的状态时,用.attr("checked")时输出总是为undefined.郁闷了,这难道是个bug?! 查看jQuery API的文档,发现: As of jQuery 1.6, the .attr() method returns undefin

用Jquery获取checkbox多个选项

1,下拉框: var cc1   = $(".formc select[@name='country'] option[@selected]").text(); //得到下拉菜单的选中项的文本(注意中间有空格) var cc2 = $('.formc select[@name="country"]').val();   //得到下拉菜单的选中项的值 var cc3 = $('.formc select[@name="country"]').att

Jquery获取CheckBox、Select、radio的值

Jquery获取这三个控件的值不可以仅仅根据$("#控件ID")进行获取,以下是自己进行的简单的测试: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Control.aspx.cs" Inherits="Test.Control" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XH

jquery 获取 checkbox 的 checked 状态问题

这个郁闷了,今天写这个功能的时候发现了问题,上网找了好多资料对照,更加纠结... 事实证明一切,自己测试了N遍,发现网上的说法和自己以前的理解都是错的,不知道大家有没发现. 下面来看看网上大多资料的说法 转别人的一些东西: jquery判断checkbox是否被选中 在 html 的 checkbox 里,选中的话会有属性 checked="checked". 如果用一个 checkbox 被选中,alert 这个 checkbox 的属性 "checked" 的值

jquery循环遍历radio单选按钮,并设置选中状态

背景:自己在做项目过程中遇到的问题,现在记录一下. 需求:在ajax获取后台数据的之后,需要根据获取的数据对页面中的radio单选按钮进行选中状态设置 因为自身js功底欠佳,所以耽误了点时间,现在把方法写一下 先贴一下html代码,这里就以最简单的代码来演示: <input type="radio" class="optionsRadios" value="1">是 <input type="radio" c

jquery操作select取值赋值与设置选中

本节内容:jquery实现select下拉框的取值与赋值,设置选中的方法大全. 比如<select class="selector"></select> 1.设置value为pxx的项选中 复制代码代码示例: $(".selector").val("pxx"); 2.设置text为pxx的项选中 复制代码代码示例: $(".selector").find("option[text='pxx']