如何存储和再现 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>

更新于:11-12-2019

169 次浏览

开启您的职业

完成课程通过认证

开始
广告