“jQuery jika kotak centang dicentang” Kode Jawaban

Bagaimana cara memeriksa apakah kotak centang dicentang di jQuery?

//using plane javascript 
if(document.getElementById('on_or_off_checkbox').checked) {
    //I am checked
} 

//using jQuery
if($('#on_or_off_checkbox').is(':checked')){
    //I am checked
}
Grepper

JQuery mendeteksi saat kotak centang dicentang

$(".checkbox").change(function() {
    if(this.checked) {
        //Do stuff
    }
});
Anxious Anaconda

jQuery jika kotak centang dicentang

$( "SELECTOR" ).attr( "checked" )  // Returns ‘true’ if present on the element, returns undefined if not present
$( "SELECTOR" ).prop( "checked" ) // Returns true if checked, false if unchecked.
$( "SELECTOR" ).is( ":checked" ) // Returns true if checked, false if unchecked.
Carnivorous Flamingo

JQuery di kotak centang dicentang

// Check a checkbox
$(selector).prop('checked', true);
// Un-check a checkbox
$(selector).prop('checked', false);
// Determine if checked or not
isChecked = $(selector).prop('checked');
Envious Earthworm

kotak centang dicentang jQuery

$(your_checkbox).is(':checked');
// or
$('your_checkbox:checked')
ALLIGAT0R_BL00D

jQuery diperiksa

if ($('[name="your_input_checkbox_name"]').is(":checked"))
{
  // it is checked
} else {
  // it isn't checked	
}
Matteoweb

Jawaban yang mirip dengan “jQuery jika kotak centang dicentang”

Pertanyaan yang mirip dengan “jQuery jika kotak centang dicentang”

Lebih banyak jawaban terkait untuk “jQuery jika kotak centang dicentang” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya