码迷,mamicode.com
首页 > 其他好文 > 详细

angular笔记_1

时间:2017-12-20 03:45:14      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:body   []   .com   pos   function   也会   oob   控制   stat   

 

第一个angular文件
<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>
<div ng-app="hd" ng-controller="ctrl">
    <h2>{{name}}</h2>
    <h1 ng-bind="name"></h1>
    <input type="text" ng-model="name"/>
   <!--input值改变的时候 h1,h2的值也会随之变化-->
</div>
<script>
   var m=angular.module(‘hd‘,[]);//声明模块
   //声明控制器->ctrl
  //注入师徒模型->$scope
  m.controller(‘ctrl‘,[‘$scope‘,function($scope){
  $scope.name="百度"; //双向数据绑定
}]);
</script>

angular笔记_1

标签:body   []   .com   pos   function   也会   oob   控制   stat   

原文地址:http://www.cnblogs.com/yewook/p/8067630.html

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