“Установите флажок, проверенный jQuery” Ответ

F -флажок jQuery Set зарегистрирован

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

F -флажок jquery set проверяется без контроля

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

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

jQuery флажок набор установлен

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

Установите флажок, проверенный jQuery

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

Установите флажок, проверенный jQuery

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

Ответы похожие на “Установите флажок, проверенный jQuery”

Вопросы похожие на “Установите флажок, проверенный jQuery”

Больше похожих ответов на “Установите флажок, проверенный jQuery” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования