您好,欢迎访问一九零五行业门户网

AngularJS之表格

1、问题背景
设计一个表格,样式由bootstrap决定的,数据由angularjs来决定的
2、实现源码
<!doctype html> <html> <head> <meta charset="utf-8"> <title>angularjs之表格</title> <link rel="stylesheet" href="../css/bootstrap.css" /> <script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script> <script> var app = angular.module("tableapp",[]); app.controller("tablecon",function($scope){ $scope.datas = [ {name:"张三",age:"23"}, {name:"李斯",age:"22"}, {name:"王五",age:"21"}, {name:"赵倩",age:"24"}, {name:"五月",age:"25"} ] }); </script> </head> <body> <p ng-app="tableapp" ng-controller="tablecon"> <table class="table table-bordereds" style="text-align: center;"> <thead> <tr> <th style="text-align: center;">姓名</th> <th style="text-align: center;">年龄</th> </tr> </thead> <tr ng-repeat="data in datas"> <td>{{data.name}}</td> <td>{{data.age}}</td> </tr> </table> </p> </body> </html>
3、实现结果
以上就是angularjs之表格的内容。
其它类似信息

推荐信息