实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<div ng-app="" ng-init="quantity=1;cost=5">
6
<p>总价: <span ng-bind="quantity * cost"></span></p>
7
</div>
8
9
<script src="https://apps.bdimg.com/libs/angular.js/1.3.9/angular.min.js"></script>
10
11
</body>
12
</html>
13