Bootstrap笔记

开关按钮


事件

$('#advanced-settings-switch').on({
    'switchChange.bootstrapSwitch': function(event, state) {
    if (state == true){
            $("#advanced-settings").show();
        }
        else{
            $("#advanced-settings").hide();
        }
    }
});

手动设置状态
$('#advanced-settings-switch').bootstrapSwitch('state', true);

你可能感兴趣的:(Bootstrap笔记)