AngularJS CSS 스타일로 표시하기
AngularJS CSS 스타일로 표시하기
ng-repeat 지시어는 테이블을 표시하는 데 적합합니다.
테이블에 데이터 표시
각도가있는 표를 표시하는 것은 매우 간단합니다.
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>
[전체소스]
<!DOCTYPE html>
<html>
<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>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<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>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("customers.php")
.then(function (response) {$scope.names = response.data.records;});
});
</script>
</body>
</html>
ng-repeat 지시어는 테이블을 표시하는 데 적합합니다.
테이블에 데이터 표시
각도가있는 표를 표시하는 것은 매우 간단합니다.
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>
[전체소스]
<!DOCTYPE html>
<html>
<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>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<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>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("customers.php")
.then(function (response) {$scope.names = response.data.records;});
});
</script>
</body>
</html>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 238 | 부트스트랩 | 8년 전 | 1776 | ||
| 237 | 부트스트랩 | 8년 전 | 1588 | ||
| 236 | 부트스트랩 | 8년 전 | 1483 | ||
| 235 | 부트스트랩 | 8년 전 | 1755 | ||
| 234 | 부트스트랩 | 8년 전 | 1328 | ||
| 233 | 부트스트랩 | 8년 전 | 2262 | ||
| 232 | 부트스트랩 | 8년 전 | 1360 | ||
| 231 | 부트스트랩 | 8년 전 | 1715 | ||
| 230 | 부트스트랩 | 8년 전 | 2125 | ||
| 229 | 부트스트랩 | 8년 전 | 2835 | ||
| 228 | 부트스트랩 | 8년 전 | 2670 | ||
| 227 | 부트스트랩 | 8년 전 | 1624 | ||
| 226 | 부트스트랩 | 8년 전 | 2479 | ||
| 225 | 부트스트랩 | 8년 전 | 1636 | ||
| 224 | 부트스트랩 | 8년 전 | 1558 | ||
| 223 | 부트스트랩 | 8년 전 | 1403 | ||
| 222 | 부트스트랩 | 8년 전 | 1938 | ||
| 221 | 부트스트랩 | 8년 전 | 1493 | ||
| 220 | 부트스트랩 | 8년 전 | 1646 | ||
| 219 | 부트스트랩 | 8년 전 | 1196 | ||
| 218 | 부트스트랩 | 8년 전 | 1061 | ||
| 217 | 부트스트랩 | 8년 전 | 1445 | ||
| 216 | 부트스트랩 | 8년 전 | 1325 | ||
| 215 | 부트스트랩 | 8년 전 | 1245 | ||
| 214 | 부트스트랩 | 8년 전 | 1237 | ||
| 213 | 부트스트랩 | 8년 전 | 1381 | ||
| 212 | 부트스트랩 | 8년 전 | 1249 | ||
| 211 | 부트스트랩 | 8년 전 | 1565 | ||
| 210 | 부트스트랩 | 8년 전 | 1558 | ||
| 209 | 부트스트랩 | 8년 전 | 1800 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기