anjularjs 指令

Posted linfang.zhou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了anjularjs 指令相关的知识,希望对你有一定的参考价值。

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 指令的主要内容,如果未能解决你的问题,请参考以下文章

AnjularJS系列3 —— 数据的双向绑定

AnjularJS系列5 —— scopesmodulecontroller

AnjularJs的增删改查(单页网站)

anjularjs-filter,directer

AnjularJs-Select添加数据并设置默认值

Anjular JS 的一些运用