AngularJS 控制器(Controller) 用于控制 AngularJS 应用

前端之家收集整理的这篇文章主要介绍了AngularJS 控制器(Controller) 用于控制 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>
原文链接:https://www.f2er.com/angularjs/147509.html

猜你在找的Angularjs相关文章