AngularJS $event Object

· 8년 전 · 1495
AngularJS $event Object

$event함수를 호출 할 때 객체를 인수로 전달할 수 있습니다 .

$event객체는 브라우저의 이벤트 객체를 포함 :


<div ng-app="myApp" ng-controller="myCtrl">

<h1 ng-mousemove="myFunc($event)">Mouse Over Me!</h1>

<p>Coordinates: {{x + ', ' + y}}</p>

</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.myFunc = function(myE) {
$scope.x = myE.clientX;
$scope.y = myE.clientY;
}
});
</script>
|
댓글을 작성하시려면 로그인이 필요합니다.

퍼블리싱강좌

+
분류 제목 글쓴이 날짜 조회
AngularJS 8년 전 조회 1,502
AngularJS 8년 전 조회 1,297
AngularJS 8년 전 조회 1,323
AngularJS 8년 전 조회 1,309
AngularJS 8년 전 조회 1,452
AngularJS 8년 전 조회 1,333
AngularJS 8년 전 조회 1,562
AngularJS 8년 전 조회 1,285
AngularJS 8년 전 조회 1,186
AngularJS 8년 전 조회 1,267
AngularJS 8년 전 조회 1,800
AngularJS 8년 전 조회 1,510
AngularJS 8년 전 조회 1,607
AngularJS 8년 전 조회 1,238
AngularJS 8년 전 조회 1,496
AngularJS 8년 전 조회 1,590
AngularJS 8년 전 조회 1,581
AngularJS 8년 전 조회 2,220
AngularJS 8년 전 조회 1,610
jQuery Mobile
[jQuery Mobile]
8년 전 조회 2,397
jQuery Mobile
[jQuery Mobile]
8년 전 조회 2,158
jQuery Mobile
[jQuery Mobile]
8년 전 조회 2,028
jQuery Mobile 8년 전 조회 1,923
jQuery Mobile
[jQuery Mobile]
8년 전 조회 1,969
jQuery Mobile
[jQuery Mobile]
8년 전 조회 2,198
jQuery Mobile
[jQuery Mobile]
8년 전 조회 1,716
jQuery Mobile
[jQuery Mobile]
8년 전 조회 1,791
jQuery Mobile 8년 전 조회 1,452
jQuery Mobile
[jQuery Mobile]
8년 전 조회 1,698
jQuery Mobile 8년 전 조회 1,932