大写锁定已打开

bootstrap-switch(开关插件)

看到了个bootstrap-switch.js插件,发觉效果还可以。
        <script type="text/javascript" src="<%=request.getContextPath()%>/js/bootstrap-switch-master/dist/js/bootstrap-switch.min.js"></script>	
        <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/js/bootstrap-switch-master/dist/css/bootstrap3/bootstrap-switch.min.css" />
        <pre name="code" class="html"><link rel="stylesheet" type="text/css" href=">%=request.getContextPath()%>/js/bootstrap-switch-master/docs/js/jquery.min.js" />
                                 
通过js来实现开关的初始化。
                          
                           $('[name="status"]').bootstrapSwitch({
                        		onText:"启动",
                        		offText:"停止",
                        		onColor:"success",
                        		offColor:"info",
                        		size:"small",
                        		onSwitchChange:function(event,state){
                        			if(state==true){
                        				$(this).val("1");
                        			}else{
                        				$(this).val("2");
                        			}
                        		}
                        	})

                     
bootstrap-switch属性
js属性名html属性名类型描述取值范围默认值
statecheckedBoolean选中状态true、falsetrue
sizedata-sizeString开关大小null、mini、small、normal、largenull
animatedata-animateBoolean动画效果true、falsetrue
disableddisabledBoolean禁用开关ture、falsefalse
readonlyreadonlyBoolean开关状态只读,不能修改true、falsefalse
indeterminatedata-indeterminateBoolean模态true、falsefalse
inversedata-inverseBoolean颠倒开关顺序true、falsefalse
radioAllOffdata-radio-all-offBoolean允许单选按钮被用户取消选中true、falsefalse
onColordata-on-colorString左侧开关颜色primary、info、success、warning、danger、defaultprimary
offColordata-off-colorString右侧开关颜色primary、info、success、warning、danger、defaultdefault
onTextdata-on-textString左侧开关显示文本StringON
offTextdata-off-textString右侧开关显示文本StringOFF
labelTextdata-label-textString开关中间显示文本String&nbsp;
handleWidthdata-handle-widthString|Number开关左右2侧的宽度String|Numberauto
labelWidthdata-label-widthString|Number开关中间的宽度String|Numberauto
baseClassdata-base-classString开关基础样式Stringbootstrap-switch
wrapperClassdata-wrapper-classString | Array元素样式容器String | Arraywrapper
onInit function初始化开关Functionfunction(event,state){}
onSwitchChange function当开关状态改变时触发Functionfunction(event,state){}