qypt15
實例示範了在新增不同事件監聽時,冒泡與捕獲的不同。
<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>
#
以上是js停止冒泡的實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!