Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app>
<head>
<meta name="description" content="AngularJS Code Sample 2" />
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body ng-init="stock=120;price=325;quantity=1;total=0">
  <p>馬老師雲端研究室 滑鼠墊</p>
  <p>剩餘:<span ng-model="stock">{{ stock-quantity }}</span></p>
  <p>單價:<span ng-model="price">{{ price | currency:"NT$":0 }}</span></p>
  <p>數量:<input type="number" min="0" max="{{ stock }}" ng-model="quantity"></p>
  <p>總金額:<span ng-model="total">{{ price*quantity | currency:"NT$":0 }}</span></p>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
StanleyMapro
0viewers