标签:
<!doctype html>
<html ng-app>
<head>
<meta charset="utf-8">
</head>
<body>
<div ng-controller="HelloAngular">
<p>{{greeting.text}},angular.js</p>
</div>
</body>
<script src="js/angular-1.3.0.js"></script>
<script src="HelloAngular_MVC.js"></script>
</html>
function HelloAngular($scope){
$scope.greeting = {
text:"Hello"
};
}
标签:
原文地址:http://www.cnblogs.com/qiyc/p/5958023.html