码迷,mamicode.com
首页 > Web开发 > 详细

angular js模块,angular js控制器

时间:2017-05-05 10:49:47      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:script   angularjs   text   func   $scope   nbsp   example   input   ring   

AngularJS 模块

var app = angular.module(myApp, [])

AngularJS 控制器

app.controller(myCtrl, function($scope) { $scope.firstName= "John"; $scope.lastName= "Doe"; });

AngularJS 实例

<div ng-app="myApp" ng-controller="myCtrl">
名: <input type="text" ng-model="firstName"><br>
姓: <input type="text" ng-model="lastName"><br> <br>
姓名: {{firstName + " " + lastName}} </div>
<script>
var app = angular.module(‘myApp‘, []);
app.controller(‘myCtrl‘, function($scope)
{ $scope.firstName= "John"; $scope.lastName= "Doe"; });
</script>

angular js模块,angular js控制器

标签:script   angularjs   text   func   $scope   nbsp   example   input   ring   

原文地址:http://www.cnblogs.com/yaomengli/p/6811381.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!