This repository has been archived by the owner on Jun 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
event.html
55 lines (49 loc) · 1.46 KB
/
event.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 ng-app="myApp">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<title>Event - AngularJS Test</title>
<style type="text/css">
.test-div {margin:15px;padding:15px;border:1px solid #ccc;}
</style>
</head>
<body>
<div class="test-div" ng-init="mySwitch=true">
<p>
<button ng-disabled="mySwitch">Click Me</button>
</p>
<p>
<input type="checkbox" ng-model="mySwitch" /> 禁用
</p>
<p>
{{mySwitch}}
</p>
</div>
<div class="test-div" ng-init="hour=24">
<p ng-show="hour>=23">It's time to sleep!</p>
<p ng-hide="false">OK!</p>
</div>
<div class="test-div" ng-init="count=0">
<h2 ng-mouseover="count = count + 1">Mouse over count: {{count}}</h2>
</div>
<div class="test-div" ng-controller="myCtrl">
<h2 ng-click="myFunc($event)">Mouse click count: {{count}}</h2>
</div>
<script type="text/javascript" src="static/js/angular-1.5.8.js"></script>
<script type="text/javascript">
/**
* You can pass the $event object as an argument when calling the function.
* The $event object contains the browser's event object.
*/
var myApp = angular.module("myApp", []);
myApp.controller("myCtrl", function($scope) {
$scope.count = 0;
$scope.myFunc = function(e) {
$scope.count++;
console.log("Event Object: " , e)
};
});
</script>
</body>
</html>