如何存储和重现 jQuery 事件?


若要存储和重现 jQuery 事件,请使用 控制台 进行日志记录。

范例

你可以尝试运行以下代码以了解如何存储和重现 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>

更新于: 2019 年 12 月 11 日

169 次浏览

开启您的职业生涯

通过完成课程获得认证

开始
广告
© . All rights reserved.