标签:
demo.html <!doctype html> <html ng-app="freefedApp"> <head> <title>angular应用demo</title> <script src="angular.js"></script> <script src="app.js"></script> </head> <body> <div ng-controller="helloCtrl"> <input ng-model="name" type="text" /> <button ng-click="changeText()">change</button> <div>{{ name }}</div> </div> </body> </html>
app.js /*声明module*/ var module = angular.module(‘freefedApp‘,[]); /*声明控制器*/ module.controller(‘helloCtrl‘,[‘$scope‘,function($scope){ $scope.name = ‘hello world‘; $scope.changeText = function(){ $scope.name = ‘hello dingdone‘; }; }]);
标签:
原文地址:http://www.cnblogs.com/freefed/p/4835536.html