如何存储和重现jQuery事件?
要存储和重现jQuery事件,请使用控制台 进行记录。
示例
您可以尝试运行以下代码以了解如何存储和重现jQuery事件:
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.staticfile.org/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>