angularJs使用ng-repeat遍历后选中某一个的方法

angularJs使用ng-repeat遍历后选中某一个的方法

今天小编就为大家分享一篇angularJs使用ng-repeat遍历后选中某一个的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

1、html代码如下所示:

 

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遍历后选中某一个的方法的详细内容,更多请关注易知道|edz.cc其它相关文章!

推荐阅读