实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
5
<script>
6
function myFunction(e)
7
{ 
8
alert(e.bubbles);
9
}
10
</script>
11
</head>
12
13
<body>
14
15
<p onclick="myFunction(event)">Click this paragraph. An alert box will tell if the event is a bubbling event.</p>
16
17
</body>
18
</html>