一只甜甜圈
123456789101112131415161718<html><head><title>AngularJs Demo</title><script type='text/javascript' src="./angular.min.js"></script></head><body ng-app="myApp"><h1>AngularJs Demo</h1><div ng-cloak ng-controller="DemoCtrl" ng-init="pageInit()">{{hello}}</div><script type='text/javascript'>var app = angular.module('myApp', []);app.controller('DemoCtrl', function($scope) { $scope.pageInit = function() { $scope.hello = 'Hello AngularJs'; }});</script></body></html>保存为html, 当前目录需要angular.min.js文件.