“Jak przypisać BootstrapSwitch za pomocą jQuery” Kod odpowiedzi

Jak przypisać BootstrapSwitch za pomocą 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

Jak przypisać BootstrapSwitch za pomocą 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

Odpowiedzi podobne do “Jak przypisać BootstrapSwitch za pomocą jQuery”

Pytania podobne do “Jak przypisać BootstrapSwitch za pomocą jQuery”

Więcej pokrewnych odpowiedzi na “Jak przypisać BootstrapSwitch za pomocą jQuery” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu