blob: 5a9a4141facce9eedd02254b427d03baeaf6612a (
plain)
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
|
---
title: Event.cancelBubble
slug: Web/API/Event/cancelBubble
tags:
- Property
- Reference
- Deprecated
browser-compat: api.Event.cancelBubble
translation_of: Web/API/Event/cancelBubble
---
{{APIRef("DOM Events")}} {{Deprecated_Header}}
**Event.cancelBubble** 속성은 {{domxref("Event.stopPropagation()")}}의 별칭입니다. 이벤트 핸들러에서 반환되기 전에 값을 true로 설정하면 이벤트가 전파되지 않습니다.
## 예제
```js
elem.onclick = function(event) {
// Do cool things here
event.cancelBubble = true;
}
```
## 명세
{{Specifications}}
## 브라우저 호환성
{{Compat}}
|