“Dapatkan kotak centang yang tidak dicentang jQuery” Kode Jawaban

bagaimana menghapus centang kotak centang di jQuery

$("#myCheckBox").prop("checked", false);
Lazy Lemur

JQuery Set Checkbox Diperiksa Tidak Dicentang

//jQuery 1.6+ use
$('.checkbox').prop('checked', true);  //false for uncheck
//jQuery 1.5.x and below use
$('.checkbox').attr('checked', true);  //false for uncheck
Batman

Kotak centang hapus centang

$('#myCheckbox').prop('checked', true); // Checks it
$('#myCheckbox').prop('checked', false); // Unchecks it
RedlifeBIG

Dapatkan kotak centang yang tidak dicentang jQuery

if ($("#check_box_id").is(':checked')) {
  alert("checked");
}else{
  alert("unchecked");
}
Zealous Zebra

Kotak centang jQuery tidak terkendali

$("input:radio[name='NAME']:radio[value='VALUE']").attr("checked",true);
$("input:radio[name='NAME']").removeAttr("checked");
cupid grep

centang / hapus centang kotak dengan jQuery

<html>
<head>
<title>jQuery check / uncheck a check box example</title>
 
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>

</head>

<body>

<h1>jQuery check / uncheck a check box example</h1>

<script type="text/javascript">

  $(document).ready(function(){

    $("#isCheck").click(function () {
		
	alert($('input:checkbox[name=checkme]').is(':checked'));
			
    });
	
    $("#checkIt").click(function () {
		
	$('input:checkbox[name=checkme]').attr('checked',true);
			
    });
	
    $("#UnCheckIt").click(function () {
		
	$('input:checkbox[name=checkme]').attr('checked',false);
			
    });	
		
  });
</script>
</head><body>

<input type="checkbox" name="checkme">Check Me</input>

<br/>
<br/>
<br/>

<input type='button' value='Is Check' id='isCheck'>
<input type='button' value='Check It' id='checkIt'>
<input type='button' value='UnCheck It' id='UnCheckIt'>

</body>
</html>
md fbs

Jawaban yang mirip dengan “Dapatkan kotak centang yang tidak dicentang jQuery”

Pertanyaan yang mirip dengan “Dapatkan kotak centang yang tidak dicentang jQuery”

Lebih banyak jawaban terkait untuk “Dapatkan kotak centang yang tidak dicentang jQuery” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya