js判断复选框是否被选中

需要js个jq都写

$(‘.zc0207-cjzp-2-content‘).find(‘:checkbox:eq(0)‘).click(function(){    if($(this).is(‘:checked‘)) {        $(‘.zc0207-cjzp-2-content‘).find(‘:checkbox:eq(1)‘).attr(‘disabled‘,‘disabled‘);    }else{        $(‘.zc0207-cjzp-2-content‘).find(‘:checkbox:eq(1)‘).removeAttr(‘disabled‘);    }})
时间: 2024-10-12 13:33:18

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

js 判断 复选框全选、全不选、反选、必选一个

一个挺 使用的 js 代码片段,  判断  复选框全选.全不选.反选.必选一个 记录下, 搬来的 思路: 修改数据的 选中与否状态, 拿到所有的输入框,看是否有选中的状态 <html> <head> <title> 复选框全选.全不选.反选.必选一个 </title> <meta http-equiv="content-type" content="text/html;charset=GBK"/> <

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判断复选框是否有选中

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

JQuery、js判断复选框是否选中状态

JQuery: var $isChecked = $("#id").is(":checked"); alert($isChecked); JS: var $id = document.getElementById("id"); alert($id.checked); Notes: JQuery中,is函数里的必须要有冒号,否则不见效: JS中,必须调用checked 即>>> .checked

jquery、js判断复选框是否选中

js: if (document.getElementById("checkboxID").checked) { alert("checkobx is checked");}  jquery: if ($("#checkboxID").prop("checked")) { alert("checkbox is checked"); } 或 if ($("#checkboxID").is(

js判断多选框是否被选中若干方法

下面是自己写的一个全选和全不选的效果 <!DOCTYPE html><html><head><meta charset="utf-8" ><title>投放场所</title><script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script><style> .cf:before,.cf:af

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

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

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

jquery判断复选框是否被选中

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