bubbles 事件属性返回一个布尔值,如果事件是起泡类型,则返回 true,否则返回 fasle。
事件冒泡分为三个阶段,它是这样的:
event.bubbles
下面的例子可检测发生的事件是否是一个起泡事件:
运行一下 »<html>
<head>
<script>
function myFunction(e)
{
alert(e.bubbles);
}
</script>
</head>
<body>
<p onclick="myFunction(event)">Click this paragraph.
An alert box will tell if the
event is a bubbling event.</p>
</body>
</html>