angularJs使用ng-repeat遍历后选中某一个的方法
2019/6/27 7:40:04
本文主要是介绍angularJs使用ng-repeat遍历后选中某一个的方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1、html代码如下所示:
<div> <button ng-repeat="t in deptName" class="deptDiv" ng-class="{'deptDivOnclick':selected==t.name}" ng-click="showDeptEmps(t.name )">{{ t.name }} </button> </div>
2、angular代码如下所示:
$scope.showDeptEmps = function (dName) { $scope.selected = dName; //设置点击按钮背景颜色 };
其中:
$scope.deptName = [{name;"部门1"},{name;"部门2"},{name;"部门3"},{name;"部门4"}];
3、CSS代码如下所示:
.deptDiv { margin: 10px; width: 30%; font-size: 27px; background-color: #A1CF6D; color: white; padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; } .deptDivOnclick { background-color: #008000; }
以上这篇angularJs使用ng-repeat遍历后选中某一个的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持找一找教程网。
这篇关于angularJs使用ng-repeat遍历后选中某一个的方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Vue CLI多环境配置学习:从入门到实践
- 2024-11-24Vue CLI多环境配置学习:新手入门教程
- 2024-11-24Vue CLI学习:初学者指南
- 2024-11-24Vue CLI学习:从入门到上手的简单教程
- 2024-11-24Vue3+Vite学习:从零开始的前端开发之旅
- 2024-11-24Vue3阿里系UI组件学习入门教程
- 2024-11-24Vue3的阿里系UI组件学习入门指南
- 2024-11-24Vue3公共组件学习:新手入门教程
- 2024-11-24Vue3公共组件学习入门指南
- 2024-11-24vue3核心功能响应式变量学习