码迷,mamicode.com
首页 > Web开发 > 详细

AngularJS+bootstrap-switch 实现开关控件

时间:2018-05-06 16:27:37      阅读:1162      评论:0      收藏:0      [点我收藏+]

标签:test   UNC   char   java   children   res   div   sheet   styles   

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
    <link rel="stylesheet" type="text/css" href="./libs/bootstrap/css/bootstrap.min.css">
    <link rel="stylesheet" type="text/css" href="./libs/bootstrap/css/bootstrap-switch.min.css">
    <link rel="stylesheet" type="text/css" href="./libs/bootstrap/css/style.css">
</head>
<body ng-app="myapp" >
    <!-- demo -->
  <div ng-controller="myctra">
      <button type="button" ng-click = "test()" >biggg</button>
        <!-- 控件 -->
      <!-- <my-input model="x" fun = "sub"></my-input> -->
        <input type="checkbox" name="switch" checked/>




  </div>
      
    

    <script type="text/javascript" src="./libs/angular.min.js"></script>
    <script type="text/javascript" src="./libs/jquery-3.3.1.min.js"></script>
    <script type="text/javascript" src="./libs/bootstrap/js/bootstrap-switch.min.js"</script>
    <script type="text/javascript" src="./libs/bootstrap/js/bootstrap.min.js"></script>
    <script type="text/javascript">
    

    var appModule = angular.module(myapp, []);
    
    appModule.controller(myctra,[$scope,function($scope){
        $scope.persons = [wo,,];
        $scope.x = true;
        $scope.test = function(){
            console.log($scope.x);
        };

        $scope.sub = function(state){
            console.log(state);
        };

        var c =  $("[name=‘switch‘]");
            c.bootstrapSwitch(state, $scope.x); // true || false
            c.on(switchChange.bootstrapSwitch, function(event, state) {
                  $scope.sub(state); // true | false
                });
    }]);



    //控件
    appModule.directive(myInput,function(){
       return{
           restrict : "E",
           scope : {
               model :"=",
               fun :"="
           },
           template :<div class="switch"></div>,
           replace : true,
           link : function(scope,element,attr){
               var $input = $(<input type="checkbox" name="switch" checked>);
               $(element[0]).append($input);
                var c = $(element[0]).children();
                c.bootstrapSwitch(state, scope.model); // true || false
                c.on(switchChange.bootstrapSwitch, function(event, state) {
                      scope.fun(state);
                    });
           }
       }
    });
    </script>
</body>
</html>

 

AngularJS+bootstrap-switch 实现开关控件

标签:test   UNC   char   java   children   res   div   sheet   styles   

原文地址:https://www.cnblogs.com/yeyongjian/p/8998157.html

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