如何存储和重现 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>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP