本文爲 H5EDU 機構官方 HTML5培訓 教程,主要介紹:JavaScript強化教程JavaScript強化教程 —— AngularJS 表達式
AngularJS 使用 表達式 把數據綁定到 HTML。AngularJS 表達式
AngularJS 表達式寫在雙大括號內:` expression `。
AngularJS 表達式把數據綁定到 HTML,這與 ng-bind 指令有殊途同歸之妙。
AngularJS 將在表達式書寫的位置"輸出"數據。
AngularJS 表達式 很像 JavaScript 表達式:它們能夠包含文字、運算符和變量。
實例 {{ 5 + 5 }} 或 {{ firstName + " " + lastName }}
AngularJS 實例
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://apps.bdimg.com/libs/ang ... gt%3B
</head>
<body>
<div ng-app="">
<p>個人第一個表達式: {{ 5 + 5 }}</p>
</div>
</body>
</html>
AngularJS 數字
AngularJS 數字就像 JavaScript 數字:
AngularJS 實例
<div ng-app="" ng-init="quantity=1;cost=5">
<p>總價: {{ quantity * cost }}</p>
</div>
使用 ng-bind 的相同實例:
AngularJS 實例
<div ng-app="" ng-init="quantity=1;cost=5">
<p>總價: <span ng-bind="quantity * cost"></span></p>
</div>javascript