获取input的checked值是否为true:

第一种:

if($(“input[name=item][value=‘val’]”).attr(‘checked’)==true) //判断是否已经打勾 --注:name即控件name属性,value即控件value属性

第二种:
可以不指定属性值,因一组checkbox的value值都会保存其在数据库中对应的id,最好写成如下方式:
if($(“input[name=row_checkbox]”).attr(‘checked’)==true)

第三种:
if($("[name=row_checkbox]").attr(‘checked’)==true) --注:name即控件name属性

jquery radio取值,checkbox取值,select取值,radio选中,checkbox选中,select选中,及其相关文章分类:Web前端:
radio:
获取一组radio被选中项的值:var item = ( ′ i n p u t [ n a m e = i t e m s ] [ c h e c k e d ] ′ ) . v a l ( ) ; − − 注 : n a m e 即 控 件 n a m e 属 性 r a d i o 单 选 组 的 第 二 个 元 素 为 当 前 选 中 项 : ('input[name=items][checked]').val(); --注:name即控件name属性 radio单选组的第二个元素为当前选中项 : (input[name=items][checked]).val();namenameradio(‘input[@name=items]’).get(1).checked = true;
( ′ i n p u t [ n a m e = i t e m s ] ′ ) . a t t r ( " c h e c k e d " , ′ 1 ′ ) ; r a d i o 的 v a l u e = ′ v a l ′ 的 元 素 为 当 前 选 中 项 : ('input[name=items]').attr("checked", '1′); radio的value = 'val'的元素为当前选中项: (input[name=items]).attr("checked",1);radiovalue=val(‘input[name=items] [value=‘val’]’).attr(“checked”,“checked”);
radio设置value=2的元素为当前选中项: ( " i n p u t [ t y p e = r a d i o ] " ) . a t t r ( " c h e c k e d " , ′ 2 ′ ) ; r a d i o 被 选 中 项 的 v a l u e 值 : ("input[type=radio]").attr("checked",'2′); radio被选中项的value值: ("input[type=radio]").attr("checked",2);radiovalue(“input[name=‘radio_name’][checked]”).val();
根据Value值设置Radio为选中状态:$(“input[name=‘radio_name’][value=‘要选中Radio的Value值’”).attr(“checked”,true);

select:
获取select被选中项的文本:var item = $(“select[@name=items] option[@selected]”).text();
或 var item = ( " s e l e c t [ n a m e = i t e m s ] " ) . f i n d ( " o p t i o n : s e l e c t e d " ) . t e x t ( ) ; s e l e c t 下 拉 框 的 第 二 个 元 素 为 当 前 选 中 值 : ("select[name=items]").find("option:selected").text(); select下拉框的第二个元素为当前选中值: ("select[name=items]").find("option:selected").text();select(’#select_id’)[0].selectedIndex = 1; --注:select_id’即控件的id属性
select下拉框value = ‘val’的元素为当前选中项: ( " s e l e c t [ n a m e = i t e m s ] o p t i o n [ v a l u e = ′ v a l ′ ] " ) . a t t r ( " s e l e c t e d " , " s e l e c t e d " ) ; s e l e c t 设 置 v a l u e = − s e l 3 的 项 目 为 当 前 选 中 项 : ("select[name=items] option[value='val']").attr("selected","selected"); select设置value=-sel3的项目为当前选中项: ("select[name=items]option[value=val]").attr("selected","selected");selectvalue=sel3("#sel").attr(“value”,’-sel3′); --注:sel即select控件的id属性
添加下拉框的option:KaTeX parse error: Expected 'EOF', got '#' at position 78: …n>").appendTo("#̲sel"); select清空…("#sel").empty();

checkbox:
checkbox的第二个元素被打勾: ( " i n p u t [ n a m e = i t e m s ] " ) . g e t ( 1 ) . c h e c k e d = t r u e ; / / 打 勾 c h e c k b o x 的 v a l u e = ′ v a l ′ 的 元 素 打 勾 : ("input[name=items]").get(1).checked = true; //打勾 checkbox的value='val'的元素打勾: ("input[name=items]").get(1).checked=true;//checkboxvalue=val(“input[name=item][value=‘val’]”).attr(“checked”,true);
( " i n p u t [ n a m e = i t e m ] [ v a l u e = ′ v a l ′ ] " ) . a t t r ( " c h e c k e d " , " c h e c k e d " ) ; 判 断 c h e c k b o x 是 否 已 经 打 勾 : i f ( ("input[name=item][value='val']").attr("checked","checked"); 判断checkbox是否已经打勾:if( ("input[name=item][value=val]").attr("checked","checked");checkboxif((“input[name=item][value=‘val’]”).attr(‘checked’)==true)

jQuery获取CheckBox选择的Value值:
//选择被选中CheckBox元素的集合 如果你想得到Value值你需要遍历这个集合
( ( ((“input[name=‘checkbox_name’][checked]”)).each(function(){
  arrChk+=this.value + ‘,’; //遍历被选中CheckBox元素的集合 得到Value值
});

checkbox的checked属性:
$("#checkbox_id").attr(“checked”); //获取一个CheckBox的状态(有没有被选中,返回true/false)
$("#checkbox_id").attr(“checked”,true); //设置一个CheckBox的状态为选中(checked=true)
$("#checkbox_id").attr(“checked”,false); //设置一个CheckBox的状态为不选中(checked=false)
//根据上面三条,分析分析这句代码的意思:
( " i n p u t [ n a m e = ′ c h e c k b o x n a m e ′ ] " ) . a t t r ( " c h e c k e d " , ("input[name='checkbox_name']").attr("checked", ("input[name=checkboxname]").attr("checked",("#checkbox_id").attr(“checked”));
–注:根据控件checkbox_id的checked状态为name='checkbox_name’的input赋相同的checked状态

获取值:
文本框,文本区域:KaTeX parse error: Expected 'EOF', got '#' at position 3: ("#̲txt").attr("val…(“input[name=‘checkbox’:checked]”).each(function(){
          var val = KaTeX parse error: Expected 'EOF', got '}' at position 25: …l();          }̲); 单选组radio:(“input[type=radio][checked]”).val();
下拉框select的value值: ( ′ s e l e c t ′ ) . v a l ( ) ; 下 拉 框 s e l e c t 选 中 的 t e x t 值 : ('select').val(); 下拉框select选中的text 值: (select).val();selecttext(“select”).find(“option:selected”).text();
文本框,文本区域:$("#txt").attr(“value”,"); //清空内容
$("#txt").attr(“value”,'11′); //填充内容

事件:
当对象text_id获取焦点时触发:KaTeX parse error: Expected 'EOF', got '#' at position 3: ("#̲text_id").focus…("#text_id").blur(function(){//code…});

其他:
使文本框的Vlaue值成选中状态:$("#text_id").select();
$("#text_id").val().split(","); //将Text的Value值以’,'分隔返回一个数组

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐