“Kotak centang diatur 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 dicentang

//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

Kotak centang diatur JQuery

.prop('checked', true);
Helpful Herring

Jawaban yang mirip dengan “Kotak centang diatur JQuery”

Pertanyaan yang mirip dengan “Kotak centang diatur JQuery”

Lebih banyak jawaban terkait untuk “Kotak centang diatur JQuery” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya