zoukankan      html  css  js  c++  java
  • bootstrap-switch使用

    bootstrap 的开关。

    引入相关文件:

    <link href="https://cdn.bootcss.com/bootstrap-switch/4.0.0-alpha.1/css/bootstrap-switch.min.css" rel="stylesheet">
    
    <script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
    
    <script src="https://cdn.bootcss.com/bootstrap-switch/4.0.0-alpha.1/js/bootstrap-switch.min.js"></script>

    HTML代码:

    <input type="checkbox" name="useState"/>

    JavaScript代码:

    $("[name='useState']").bootstrapSwitch({
                        size:"large",
                        onText:"启用",
                        offText:"禁用",
                        onColor:"success",
                        onSwitchChange:function(event,state){
                            if(state==true){
                                $(this).val("2");
                            }else{
                                $(this).val("1"); // 禁用
                            }
                        }
                    });

    设置开或者关:

    $('[name="useState"]').bootstrapSwitch("state", true);
    // true 为 开,false 为 关

    参考链接

  • 相关阅读:
    iOS 面向对象
    iOS 构建动态库
    iOS 单例
    iOS 操作系统架构
    iOS 编译过程原理(1)
    Category
    CoreText
    dyld
    block
    (CoreText框架)NSAttributedString 2
  • 原文地址:https://www.cnblogs.com/xguoz/p/11853247.html
Copyright © 2011-2022 走看看