哪些jQuery事件不会冒泡?

有些jQuery事件不会冒泡,例如mouseenter不会冒泡。让我们看一个此类事件的例子。

示例

您可以尝试运行以下代码,以了解如何处理不会冒泡的jQuery事件,

<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
 $(document).ready(function(){
    $("p").mouseenter(function(){
      $("p").css("background-color", "red");
    });
    $("p").mouseleave(function(){
      $("p").css("background-color", "blue");
    });
 });
</script>
</head>
<body>

<p>Demo Text - Keep the mouse pointer here.</p>

</body>
</html>