“Comment affecter BootstrapSwitch à l'aide de jQuery” Réponses codées

Comment affecter BootstrapSwitch à l'aide de jQuery

$('#toggle-state-switch').bootstrapSwitch('state'); // Get the state
$('#toggle-state-switch').bootstrapSwitch('state', false); // Set the state as off
$('#toggle-state-switch').bootstrapSwitch('state', false, false); // Set the state as off and do not trigger switchChange event
$('#toggle-state-switch').bootstrapSwitch('toggleState'); // Toggle the state
$('#toggle-state-switch').bootstrapSwitch('toggleState'); // Toggle the state and do not trigger switchChange event
Fantastic Frog

Comment affecter BootstrapSwitch à l'aide de jQuery

$('#disable-switch').bootstrapSwitch('disabled');
$('#disable-switch').bootstrapSwitch('toggleDisabled');
$('#disable-switch').bootstrapSwitch('disabled', true);  // true || false

$('#readonly-switch').bootstrapSwitch('readonly');
$('#readonly-switch').bootstrapSwitch('toggleReadonly');
$('#readonly-switch').bootstrapSwitch('readonly', true);  // true || false
Fantastic Frog

Réponses similaires à “Comment affecter BootstrapSwitch à l'aide de jQuery”

Questions similaires à “Comment affecter BootstrapSwitch à l'aide de jQuery”

Plus de réponses similaires à “Comment affecter BootstrapSwitch à l'aide de jQuery” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code