初学angular.js

<!doctype  html>
<html ng-app>
   <head>
    <meta charset="utf-8" />
    <title>angular</title>
    <script src="angular.js" /></script>
   </head>
   <body>
     Your name: <input type="text" ng-model="yourname" placeholder="World">
      Hello {{yourname || ‘World‘}}!
      Hello {{‘world‘}}
   </body>
</html>

引入angular.js 在html里面标记ng-app。输出的结果就是hello world

angular的双向绑定概念,绑定ng-model="yourname",plarceholder为默认值。

技术分享

hello {{‘world‘}}的输入结果为hello world.

注意,使用双大括号标记{{}}的内容是问候语中绑定的表达式,这个表达式是一个简单的字符串‘World’。嘿嘿,这是官方的写法。我直接拿过来了。因为我这也是初次研究,先记下来吧。

hello {{yourname || ‘world‘}} 的输出结果为:文本框内默认为world时,输出的是hello world.

自己重新输入的话,就会实时更新为您所输入的文字,好神奇。

接下来一起学习angular.js.

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。