“kotak centang dicentang jQuery” 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

Kotak centang jQuery Nilai Periksa

if ($('#check_id').is(":checked"))
{
  // it is checked
}
Fantastic Fly

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

kotak centang dicentang jQuery

$("#out_of_stock_toggle").click(function(){
      if($(this).is(':checked')){
        //show oos
        $(".oos").fadeIn();
      }else{
        //hide oos
        $(".oos").fadeOut();
      }
    });
Powerful Peccary

kotak centang dicentang jQuery

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

Jawaban yang mirip dengan “kotak centang dicentang jQuery”

Pertanyaan yang mirip dengan “kotak centang dicentang jQuery”

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

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya