BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> </head> <body> <div ng-app="" ng-controller="personController"> 名: <input ng-model="person.firstName" type="text"><br> 姓: <input ng-model="person.lastName" type="text"><br> <br> 姓名: {{fullName()}} </div> <script> function personController($scope) { $scope.person = { firstName: "John", lastName: "Doe", }; $scope.fullName = function() { var x = $scope.person; return x.firstName + " " + x.lastName; } } </script> <script src="//cdn.staticfile.net/angular.js/1.4.6/angular.min.js "></script> </body> </html>
运行结果