AngularJS 表格

 2023-09-16 阅读 19 评论 0

摘要:ng-repeat 指令可以完美的显示表格。 在表格中显示数据 <div ng-app="myApp" ng-controller="customersCtrl"> <table><tr ng-repeat="x in names"><td>{{ x.Name }}</td><td>{{ x.Country }}</t

ng-repeat 指令可以完美的显示表格。

在表格中显示数据

<div ng-app="myApp" ng-controller="customersCtrl"> <table><tr ng-repeat="x in names"><td>{{ x.Name }}</td><td>{{ x.Country }}</td></tr>
</table></div>
<script type="text/javascript" src="js/angular.min.js"></script>
<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {$http.get("js/text.json").success(function(response) {$scope.names = response.records;});
});
</script>

使用 CSS 样式

为了让页面更加美观,我们可以在页面中使用CSS:

<style>
table, th , td {border: 1px solid grey;border-collapse: collapse;padding: 5px;
}
table tr:nth-child(odd) {background-color: #f1f1f1;
}
table tr:nth-child(even) {background-color: #ffffff;
}
</style>

使用 orderBy 过滤器

排序显示,可以使用 orderBy 过滤器: 

<table><tr ng-repeat="x in names | orderBy : 'Country'"><td>{{ x.Name }}</td><td>{{ x.Country }}</td></tr>
</table>

使用 uppercase 过滤器

使用 uppercase 过滤器转换为大写: 

<table><tr ng-repeat="x in names"><td>{{ x.Name }}</td><td>{{ x.Country | uppercase }}</td></tr>
</table>

angularjs教程?结果如图:

显示序号 ($index)

表格显示序号可以在 <td> 中添加 $index

<table><tr ng-repeat="x in names"><td>{{ $index + 1 }}</td><td>{{ x.Name }}</td><td>{{ x.Country }}</td></tr>
</table>

结果如图:

使用 $even 和 $odd

<table>
<tr ng-repeat="x in names">
<td ng-if="$odd" style="background-color:#f1f1f1">{{ x.Name }}</td>
<td ng-if="$even">{{ x.Name }}</td>
<td ng-if="$odd" style="background-color:#f1f1f1">{{ x.Country }}</td>
<td ng-if="$even">{{ x.Country }}</td>
</tr>
</table>

javascript表单、结果如图:

转载地址:http://www.runoob.com/angularjs/angularjs-tables.html

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/3/70178.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息