event.isImmediatePropagationStopped()返回类型:Boolean
描述: 指示event.stopImmediatePropagation()是否已经在事件对象上调用过了。
-
增补版本:1.3event.isImmediatePropagationStopped()
- 此方法不接受任何参数。
此属性是在DOM level 3中引入的。
示例:
检查是否调用了event.stopImmediatePropagation()
。
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
|
|