アットウィキロゴ

v445

<!doctype html>
<html ng-app="myApp">
<head>
<title>TEST</title>
<script src="angular.js"></script>
<script>
var app = angular.module("myApp", []);
app.controller('myController', function() {
  this.count = 0;
  this.inc = function() { this.count++; }
  this.dec = function() { this.count--; }
});
</script>
</head>
<body>
<div ng-controller="myController as myCtrl">
  {{myCtrl.count}}
  <button ng-click="myCtrl.inc()">+1</button>
  <button ng-click="myCtrl.dec()">-1</button>
</div>
</body>
</html>
最終更新:2016年05月24日 22:32