分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 教程案例

AngularJS+bootstrap-switch 实现开关控件

发布时间:2023-09-06 01:52责任编辑:沈小雨关键词:AngularAngularJS
<!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 实现开关控件

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

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved