-
Notifications
You must be signed in to change notification settings - Fork 0
/
12.Lesson_$watch.html
55 lines (35 loc) · 1.49 KB
/
12.Lesson_$watch.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>12.Lesson_$watch</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.10/angular.min.js"></script>
<script>
var ControllerExample = angular.module("myapp", []);
ControllerExample.controller("mycontrol", function ($scope) {
//number adında alan oluşturulup default değeri 1 olarak atandı
$scope.number = 1;
//warningText adında alan oluşturulup default değeri boş olarak atandı
$scope.warningText = "";
//$watch bir değeri takip etmek için kullanılır ve number ifadesi hangi değeri takip edeceğidir
$scope.$watch("number", function () {
if ($scope.number == 11) {
$scope.warningText = "En fazla 10 kişi girilebilmektedir!"
$scope.number = 10;
}
if ($scope.number == 0) {
$scope.warningText = "Kişi sayısı 1'den küçük olamaz!"
$scope.number = 1;
}
})
});
</script>
</head>
<body ng-app="myapp" ng-controller="mycontrol">
Kişi Sayısı: {{number}}
<button ng-click="number = number + 1" ng-disabled="number == 10"> + </button>
<button ng-click="number = number - 1" ng-disabled="number == 1"> - </button>
{{warningText}}
</body>
</html>