案例:AngularJS案例     状态:可编辑再运行    进入横版
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<script src="/js/angular.js1.4.6/angular.min.js"></script>
6
</head>
7
<body ng-app="myApp" ng-controller="myCtrl">
8
9
<h1 ng-repeat="x in records">{{x}}</h1>
10
11
<script>
12
var app = angular.module("myApp", []);
13
app.controller("myCtrl", function($scope) {
14
  $scope.records = [
15
    "W3xue教程1",
16
    "W3xue教程2",
17
    "W3xue教程3",
18
    "W3xue教程4",
19
  ]
20
});
21
</script>
22
23
</body>
24
</html>

 运行结果 
 北美留学生论坛