哪些 jQuery 事件不会冒泡?
一些 jQuery 事件不会冒泡,例如下面的 mouseenter 事件。我们来看一个这样的事件示例。
示例
你可以尝试运行以下代码来学习如何处理 jQuery 中不会冒泡的事件:
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/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>
广告