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

anjularjs 指令(1)

时间:2016-11-04 19:46:44      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:mod   rip   程序   har   http   包含   r.js   应用程序   head   

ng-app:初始化一个anjularjs应用程序,一个网页可以包含多个运行在不同元素中的anjularjs应用程序

ng-init:初始化应用程序的数据

ng-model: 把元素值绑定到应用程序

 

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ng-app指令</title>
<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>
</head>
<body>
<div ng-app="" ng-init="firstName=‘luo‘">
<input type="text" ng-model="firstName" />
<p>您输入的名字为:{{firstName}}</p>
</div>
</body>
</html>

anjularjs 指令(1)

标签:mod   rip   程序   har   http   包含   r.js   应用程序   head   

原文地址:http://www.cnblogs.com/debra/p/6031241.html

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