<!DOCTYPE html>
<html>
<head>
<Meta charset="utf-8">
<Meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<link rel="stylesheet" href="">
</head>
<body>
<div ng-app="" ng-init="quantity=2;cost=5">
<p>总价:<span ng-bind="quantity + cost"></span></p>
<p>总价:<span ng-bind="quantity - cost"></span></p>
<p>总价:<span ng-bind="quantity * cost"></span></p>
<p>总价:<span ng-bind="quantity / cost"></span></p>
</div>
</body>
<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>
</html>
原文链接:https://www.f2er.com/angularjs/148202.html