首頁 > web前端 > js教程 > 詳解AngularJS中的表達式使用_AngularJS

詳解AngularJS中的表達式使用_AngularJS

WBOY
發布: 2016-05-16 15:54:41
原創
953 人瀏覽過

 表達式用於應用程式資料綁定到HTML。表達式都寫在雙括號就像{{表達式}}。表達式中的行為跟ng-bind指令方式相同。 AngularJS應用表達式是純javascript表達式,並輸出它們被使用的資料在那裡。
使用數字

<p>Expense on Books : {{cost * quantity}} Rs</p>

登入後複製

使用字串

<p>Hello {{student.firstname + " " + student.lastname}}!</p>

登入後複製

使用物件

<p>Roll No: {{student.rollno}}</p>

登入後複製

使用陣列

<p>Marks(Math): {{marks[3]}}</p>

登入後複製

範例

下面的範例將展示上述所有表達式。
testAngularJS.html 檔案程式碼如下:

<html>
<title>AngularJS Expressions</title>
<body>
<h1>Sample Application</h1>
<div ng-app="" ng-init="quantity=1;cost=30; student={firstname:'Mahesh',lastname:'Parashar',rollno:101};marks=[80,90,75,73,60]">
  <p>Hello {{student.firstname + " " + student.lastname}}!</p>  
  <p>Expense on Books : {{cost * quantity}} Rs</p>
  <p>Roll No: {{student.rollno}}</p>
  <p>Marks(Math): {{marks[3]}}</p>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>
</body>
</html>

登入後複製

輸出

在網頁瀏覽器開啟textAngularJS.html。看到結果如下:

2015616115757530.png (587×339)

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板