monitor-test
Version:
网页性能监控 18 项数据指标,浏览器信息,错误收集上报方案,前端工程化。
20 lines (19 loc) • 428 B
JavaScript
/**
* 记录最后一次鼠标事件
*/
export function recordLastEvent() {
;['click', 'touchstart', 'mousedown', 'keydown', 'mouseover'].forEach(
(eventType) => {
document.addEventListener(
eventType,
(event) => {
window._lastEvent = event
},
{
capture: true, // 捕获阶段
passive: true // 默认不阻止默认事件
}
)
}
)
}