Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 mousemove 事件参数存储在变量中,会导致性能问题吗?
window.document.addEventListener('mousemove', function(e){ window.mouse = e; });
它没有任何理由。每次鼠标移动时,您都在进行函数调用并为变量赋值,但在我能想到的任何情况下,这些都非常便宜。如果您发现性能问题,您可以使用大多数浏览器内置的性能工具来确定问题发生的位置。