码迷,mamicode.com
首页 > 其他好文 > 详细

实现Bootstrp的Switch效果

时间:2015-09-23 15:12:29      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

1)引入javascript

 
<link href="/static/switch/bootstrap-switch.css" rel="Stylesheet" type="text/css" />            
<script src="/static/switch/bootstrap-switch.js"></script>

<script type="text/javascript"> 
    $$(function() {
        $$(‘[type="checkbox"]‘).bootstrapSwitch();

        $$(‘[type="checkbox"]‘).on(‘switchChange.bootstrapSwitch‘, function (e, data) {
            var el = $$(data.el)
              , value = data.value;
            console.log(e, el, value);
            console.log(this.value)
        });

    }); 
</script>


2)HTML

<input type="checkbox" class=‘mySwitch‘
   $if item.IsEnabled: checked 
/>


实现Bootstrp的Switch效果

标签:

原文地址:http://my.oschina.net/u/2351685/blog/510080

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!