菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://edu.jb51.net/libs/angular.js/1.4.6/angular.min.js"></script> </head> <body ng-app="myApp" ng-controller="myCtrl"> <h1 ng-repeat="x in records">{{x}}</h1> <script> var app = angular.module("myApp", []); app.controller("myCtrl", function($scope) { $scope.records = [ "菜鸟学堂1", "菜鸟学堂2", "菜鸟学堂3", "菜鸟学堂4", ] }); </script> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net