python 事件冒泡
Posted 青春叛逆者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 事件冒泡相关的知识,希望对你有一定的参考价值。
<html> <meta charset="utf-8"> <head> <title>事件冒泡</title> <style> /*当下层元素和上层元素支持统一事件,当上层事件触发时,下层事件也触发,这就叫事件冒泡*/ /*取消事件冒泡:ev.cancelBubble = true*/ body{ background: red; } div{ width: 300px; height: 200px; background: green; } </style> </head> <body onclick="bottomLevel();"> <div onclick="topLevel();"></div> </body> <script > function bottomLevel() { alert(‘来自底层的呼声‘) } function topLevel(e) { //获取事件 var ev=e||event //取消事件冒泡,,其实就是阻止事件继续向下传递 ev.cancelBubble=true alert(‘地主家也没余粮‘) } </script> </html>
以上是关于python 事件冒泡的主要内容,如果未能解决你的问题,请参考以下文章