bubbles

收藏:0   阅读:29

bubbles 事件属性


定义和用法

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>

© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!