码迷,mamicode.com
首页 > Web开发 > 详细

angularJs 表格

时间:2018-11-02 00:22:33      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:ng-repeat   分享图片   tps   html   function   doctype   var   The   eve   


<table> <tr style="{{$even?‘ margin: 0px; padding: 0px; color: rgb(102, 102, 0);">:‘‘}}" ng-repeat="x in names"> <td>{{ $index + 1 }}</td> <td>{{ x.Name }}</td> <td>{{ x.Country }}</td> </tr> </table>

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.staticfile.org/angular.js/1.6.3/angular.min.js"></script>
<style>
table, td  {
  border: 1px solid grey;
  border-collapse: collapse;
  padding: 5px;
}
</style>
</head>
<body>

<div ng-app="myApp" ng-controller="customersCtrl"> 

<table>
	<tr style="{{$even?‘background-color: #f1f1f1‘:‘‘}}" ng-repeat="x in names">
		<td>{{ $index + 1 }}</td>
		<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("/try/angularjs/data/Customers_JSON.php")
    .then(function (result) {
        $scope.names = result.data.records;
    });
});
</script>

</body>
</html>

  技术分享图片

 

angularJs 表格

标签:ng-repeat   分享图片   tps   html   function   doctype   var   The   eve   

原文地址:https://www.cnblogs.com/Andrew520/p/9893136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!