jquery 判断复选框是否被选中

1 <div>
2     <span>高亮:</span><input type="checkbox" name="light" value="1">
3 </div>
4
5 //jquery:
6
7     var light = $("[name=‘light‘]").is(‘:checked‘);
8     alert(light);

弹出 true/false

时间: 2024-11-06 03:52:53

jquery 判断复选框是否被选中的相关文章

JQuery判断复选框是否有选中

隐藏所有被选中的元素(复选框或单选按钮): $(".btn1").click(function(){ $(":checked").hide(); }); 定义和用法 :checked 选择器选取所有选中的复选框或单选按钮.

jquery判断复选框是否被选中

$("#isUse").click(function(){ if($(this).is(':checked')){ $(this).attr('checked','checked'); $("#redNum").val($('#redAva').val()); }else{ $(this).attr('checked','checked'); $("#redNum").val(0); } });

jquery判断复选框是否选中

jquery判断复选框是否被选中 $(function(){ $(document).on("click", ".checkbox",function(){ var bool=$(".checkbox").is(":checked") ? !0 : !1; if(bool){ $(this).after('选中') } }) })

jQuery判断复选框是否勾选

一个功能复选框勾选时给input表单赋值,复选框取消时将表单值清除. 功能:复选框勾选时给input表单赋值,复选框取消时将表单值清除. 实现源码:cyfID为复选框的id $("#cyfID").click(function(){ var ischeck=$(this).attr("checked"); if(ischeck==undefined){ //清除输入框 alert(""); }else{ //给输入框赋值 alert("

php判断复选框是否被选中的方法

1.php如何获取复选框checkbox的值 首先我们来创建一个表单: 1 <form action ="HandleFormCheckBox.php" method="post"> 2 3 <ul> 4 5 <li><input type ="checkbox" name ="category[]" value ="php">php教程</li>

[jQuery] 判断复选框是否选中

返回值是true/false method 1: $("#register").click(function(){ if($("#accept").get(0).checked){ alert($("#accept").get(0).checked); } else{ alert($("#accept").get(0).checked); } });// 其中accept为复选框的id. 或者可以替换为: $("#a

html中用jQuery判断复选框是否选中

假设我们现在需要这样的场景:页面上有一个checkbox,我们期望通过Jquery来获得它是否选中,或者通过Jquery来让它被选中. 在JQ1.6之前的版本,我们会这样写我们的代码: 代码如下: <input type='checkbox' id='cb'/> <script> //获取是否选中 var isChecked = $('#cb').attr('checked'); //设置选中 $('#cb').attr('checked',true); </script&g

IE7下如何判断复选框是否被选中(利用jquery)

var checkM; $(".rate-mainL .checkM").click(function(){ var checkM=$("input[name='checkM']:checked").size(); if(checkM == 0){ $(this).prev().attr("disabled",false);//未选中 }else { $(this).prev().val("").attr("disa

PHP 提交checkbox表单时 判断复选框是否被选中

function GetTitleImgPath(){ $titleImgPath = ""; if (isset($_POST["titlecheckbox"])){ $titleImgPath = $_POST["imgTitlePath"]; //选中了,用isset的方式判断 } return $titleImgPath; }