bootstrap-switch,切换触发事件及动态切换以及readonly属性设置

注意不能再中添加readonly或者disabled属性




    
    Title
    
    
    


    


如果有这样一个需求。根据某个值,去设置switch按钮的state后,并且想让其不可再点击滑动,可这样写。

// 每次执行js前先初始化readonly位false。如果没有这句,执行下面某个if语句后,另外一个if语句的readonly设置就无效了
$("#status").bootstrapSwitch("readonly", false);

if(data.data.status=='0'){
         
            $("#status").bootstrapSwitch("state", true);
            $("#status").bootstrapSwitch("readonly", true);
 }

 if(data.data.status=='1'){
            $("#status").bootstrapSwitch("state", false);
            $("#status").bootstrapSwitch("readonly", true);
  }

 

转载于https://www.cnblogs.com/guofx/p/11198292.html

你可能感兴趣的:(bootstrap-switch,切换触发事件及动态切换以及readonly属性设置)