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>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 268 | 부트스트랩 | 8년 전 | 3141 | ||
| 267 | 부트스트랩 | 8년 전 | 2925 | ||
| 266 | 부트스트랩 | 8년 전 | 2914 | ||
| 265 | 부트스트랩 | 8년 전 | 3406 | ||
| 264 | 부트스트랩 | 8년 전 | 3148 | ||
| 263 | 부트스트랩 | 8년 전 | 3223 | ||
| 262 | 부트스트랩 | 8년 전 | 2722 | ||
| 261 | 부트스트랩 | 8년 전 | 4844 | ||
| 260 | 부트스트랩 | 8년 전 | 3217 | ||
| 259 | 부트스트랩 | 8년 전 | 2762 | ||
| 258 | 부트스트랩 | 8년 전 | 2788 | ||
| 257 | 부트스트랩 | 8년 전 | 2814 | ||
| 256 | 부트스트랩 | 8년 전 | 3304 | ||
| 255 | 부트스트랩 | 8년 전 | 3493 | ||
| 254 | 부트스트랩 | 8년 전 | 3227 | ||
| 253 | 부트스트랩 | 8년 전 | 4104 | ||
| 252 | 부트스트랩 | 8년 전 | 2889 | ||
| 251 | 부트스트랩 | 8년 전 | 2612 | ||
| 250 | 부트스트랩 | 8년 전 | 2717 | ||
| 249 | 부트스트랩 | 8년 전 | 2427 | ||
| 248 | 부트스트랩 | 8년 전 | 1973 | ||
| 247 | 부트스트랩 | 8년 전 | 1730 | ||
| 246 | 부트스트랩 | 8년 전 | 2001 | ||
| 245 | 부트스트랩 | 8년 전 | 1522 | ||
| 244 | 부트스트랩 | 8년 전 | 2139 | ||
| 243 | 부트스트랩 | 8년 전 | 1894 | ||
| 242 | 부트스트랩 | 8년 전 | 1783 | ||
| 241 | 부트스트랩 | 8년 전 | 1171 | ||
| 240 | 부트스트랩 | 8년 전 | 1622 | ||
| 239 | 부트스트랩 | 8년 전 | 1652 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기