“So ordnen Sie Bootstrapswitch mit JQuery zu” Code-Antworten

So ordnen Sie Bootstrapswitch mit JQuery zu

$('#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

So ordnen Sie Bootstrapswitch mit JQuery zu

$('#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

Ähnliche Antworten wie “So ordnen Sie Bootstrapswitch mit JQuery zu”

Fragen ähnlich wie “So ordnen Sie Bootstrapswitch mit JQuery zu”

Weitere verwandte Antworten zu “So ordnen Sie Bootstrapswitch mit JQuery zu” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen