AngularJS 이벤트
AngularJS 이벤트
다음 지시문 중 하나 이상을 사용하여 HTML 요소에 AngularJS 이벤트 리스너를 추가 할 수 있습니다.
1. ng-blur
2. ng-change
3. ng-click
4. ng-copy
5. ng-cut
6. ng-dblclick
7. ng-focus
8. ng-keydown
9. ng-keypress
10. ng-keyup
11. ng-mousedown
12. ng-mouseenter
13. ng-mouseleave
14. ng-mousemove
15. ng-mouseover
16. ng-mouseup
17. ng-paste
이벤트 지시문을 사용하여 특정 사용자 이벤트에서 AngularJS 함수를 실행할 수 있습니다.
AngularJS 이벤트는 HTML 이벤트를 겹쳐 쓰지 않으므로 두 이벤트가 모두 실행됩니다.
마우스 이벤트
마우스 이벤트는 커서가 요소 위로 이동하면 다음 순서로 발생합니다.
1. ng-mouseenter
2. ng-mouseover
3. ng-mousemove
4. ng-mouseleave
또는 요소에서 마우스 버튼을 클릭하면 다음 순서대로 수행됩니다.
1. ng-mousedown
2. ng-mouseup
3. ng-click
모든 HTML 요소에 마우스 이벤트를 추가 할 수 있습니다.
예
마우스가 H1 요소 위로 이동할 때 카운트 변수를 증가시킵니다.
<div ng-app="myApp" ng-controller="myCtrl">
<h1 ng-mousemove="count = count + 1">Mouse over me!</h1>
<h2>{{ count }}</h2>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.count = 0;
});
</script>
[전체소스]
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<h1 ng-mousemove="count = count + 1">Mouse Over Me!</h1>
<h2>{{ count }}</h2>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.count = 0;
});
</script>
</body>
</html>
다음 지시문 중 하나 이상을 사용하여 HTML 요소에 AngularJS 이벤트 리스너를 추가 할 수 있습니다.
1. ng-blur
2. ng-change
3. ng-click
4. ng-copy
5. ng-cut
6. ng-dblclick
7. ng-focus
8. ng-keydown
9. ng-keypress
10. ng-keyup
11. ng-mousedown
12. ng-mouseenter
13. ng-mouseleave
14. ng-mousemove
15. ng-mouseover
16. ng-mouseup
17. ng-paste
이벤트 지시문을 사용하여 특정 사용자 이벤트에서 AngularJS 함수를 실행할 수 있습니다.
AngularJS 이벤트는 HTML 이벤트를 겹쳐 쓰지 않으므로 두 이벤트가 모두 실행됩니다.
마우스 이벤트
마우스 이벤트는 커서가 요소 위로 이동하면 다음 순서로 발생합니다.
1. ng-mouseenter
2. ng-mouseover
3. ng-mousemove
4. ng-mouseleave
또는 요소에서 마우스 버튼을 클릭하면 다음 순서대로 수행됩니다.
1. ng-mousedown
2. ng-mouseup
3. ng-click
모든 HTML 요소에 마우스 이벤트를 추가 할 수 있습니다.
예
마우스가 H1 요소 위로 이동할 때 카운트 변수를 증가시킵니다.
<div ng-app="myApp" ng-controller="myCtrl">
<h1 ng-mousemove="count = count + 1">Mouse over me!</h1>
<h2>{{ count }}</h2>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.count = 0;
});
</script>
[전체소스]
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<h1 ng-mousemove="count = count + 1">Mouse Over Me!</h1>
<h2>{{ count }}</h2>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.count = 0;
});
</script>
</body>
</html>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 298 | CSS |
선택과집중
|
2개월 전 | 161 | |
| 297 | CSS |
선택과집중
|
3개월 전 | 370 | |
| 296 | CSS |
선택과집중
|
3개월 전 | 319 | |
| 295 | CSS |
선택과집중
|
4개월 전 | 298 | |
| 294 | CSS |
선택과집중
|
4개월 전 | 424 | |
| 293 | CSS |
선택과집중
|
4개월 전 | 381 | |
| 292 | CSS |
선택과집중
|
4개월 전 | 296 | |
| 291 | CSS |
선택과집중
|
5개월 전 | 300 | |
| 290 | CSS |
선택과집중
|
5개월 전 | 348 | |
| 289 | CSS |
선택과집중
|
5개월 전 | 316 | |
| 288 | CSS |
선택과집중
|
5개월 전 | 402 | |
| 287 | CSS |
선택과집중
|
5개월 전 | 351 | |
| 286 | CSS |
선택과집중
|
5개월 전 | 352 | |
| 285 | CSS |
선택과집중
|
5개월 전 | 373 | |
| 284 | CSS |
선택과집중
|
5개월 전 | 260 | |
| 283 | CSS |
|
2년 전 | 1530 | |
| 282 | CSS | 2년 전 | 2510 | ||
| 281 | CSS | 4년 전 | 4040 | ||
| 280 | CSS | 4년 전 | 4558 | ||
| 279 | 반응형웹 | 5년 전 | 2988 | ||
| 278 | 반응형웹 | 5년 전 | 2840 | ||
| 277 | 부트스트랩 | 7년 전 | 5035 | ||
| 276 | 부트스트랩 | 7년 전 | 6591 | ||
| 275 | 부트스트랩 | 7년 전 | 4672 | ||
| 274 | 부트스트랩 | 7년 전 | 6706 | ||
| 273 | 부트스트랩 | 7년 전 | 3371 | ||
| 272 | 부트스트랩 | 7년 전 | 3206 | ||
| 271 | 부트스트랩 | 8년 전 | 3708 | ||
| 270 | 부트스트랩 | 8년 전 | 3237 | ||
| 269 | 부트스트랩 | 8년 전 | 3114 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기