“Atur kotak centang yang dicentang jQuery” Kode Jawaban

JQuery mengatur kotak centang dicentang

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

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

JQuery mengatur kotak centang

//jQuery 1.6+ use:
$('.checkboxClass').prop('checked', true);
//jQuery 1.5.x and below use:
$('.checkboxClass').attr('checked', true);
Grepper

Kotak centang jQuery diatur

//For jQuery 1.6 and above
$('#myCheckBoxID').prop('checked', true);
//For jQuery Before 1.6
$('#myCheckBoxID').attr('checked','checked');
Grepper

Atur kotak centang yang dicentang jQuery

$("#checkboxid").prop('checked', true);  // Checks the box
$("#checkboxid").prop('checked', false); // Unchecks the box
Hungry Hamster

Atur kotak centang yang dicentang jQuery

$("#checkboxid").attr('checked', true);
Hungry Hamster

Jawaban yang mirip dengan “Atur kotak centang yang dicentang jQuery”

Pertanyaan yang mirip dengan “Atur kotak centang yang dicentang jQuery”

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

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya