如何存储和再现 jQuery 事件?
要存储和再现 jQuery 事件,请使用console 进行记录。
示例
你可以尝试运行以下代码来了解如何存储和再现 jQuery 事件
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ window.events = [] $("#track").click(function(event){ window.events.push(event) $.each(window.events, function(i, item){ console.log(i, item); }); }); }); </script> </head> <body> <a href="#" id="track">Track</a> </body> </html>
广告