實例示範了在新增不同事件監聽時,冒泡與捕獲的不同。
<script><br>function myP(e) {<br> alert("你點擊了P 元素!");<br> window.event ?window.event.cancelBubble = true : e.stopPropagation();<br>}<br>function myDiv() {<br> alert(" 你點擊了DIV 元素!");<br>}<br>function myPa() {<br> alert("你點擊了P2 元素!");<br>}<br> function myDiva() {<br> alert("你點擊了DIV2 元素!");<br>#} <br></script>