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.bubbles

概述

返回一个布尔值,表明当前事件是否会向DOM树上层元素冒泡.

语法

var bool = event.bubbles;

备注

一些特定的事件类型会冒泡.这时,该事件对象的bubbles属性为true. 你可以检查该属性的值来判断一个事件对象是否冒泡.

例子

 function goInput(e) {
  // 检查事件对象是否冒泡
  if (!e.bubbles) {
     // 如果不冒泡,则手动传递事件
     passItOn(e); 
  }
  // 如果冒泡的话
  doOutput(e)
}

规范

event.bubbles

文档标签和贡献者

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