目录

stopImmediatePropagation() 事件方法

示例

单击按钮时,执行第一个事件处理程序,并停止执行其余事件处理程序:

var x = document.getElementById("myBtn");
x.addEventListener("click", myFunction);
x.addEventListener("click", someOtherFunction);

function myFunction(event) {
  alert ("Hello World!");
  event.stopImmediatePropagation();
}

// This function will not be executed
function someOtherFunction() {
  alert ("I will not get to say Hello World");
}
亲自试一试 »

描述

stopImmediatePropagation() 方法可防止调用同一事件的其他侦听器。


浏览器支持

表中的数字指定完全支持该方法的第一个浏览器版本。

Method
stopImmediatePropagation() Yes 9.0 Yes Yes Yes

语法

event.stopImmediatePropagation()

参数

没有任何

技术细节

返回值: 无返回值
DOM 版本: DOM 级别 3 事件