Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

event.cancelBubble

警告: 请使用 event.stopPropagation() 方法来代替该不标准的属性.

概述

已废弃
该特性已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。

获取或设置一个布尔值,表明当前事件是否要取消冒泡.

语法

event.cancelBubble = bool;
var bool = event.cancelBubble;

bool 的值为true或false.

备注

如果一个事件是可冒泡的,则它的cancelBubble属性的默认值为 false,代表允许该事件向上冒泡. 将cancelBubble属性设置为true以后,可以阻止该事件的进一步冒泡行为.

文档标签和贡献者

 此页面的贡献者: ziyunfei, teoli, jsx
 最后编辑者: jsx,