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.
可能重复: var $this = this 的原因是什么
为什么 $(this) 应该在函数范围内?它比直接引用 $(this) 有什么好处?
function Name(){ var $this = $(this) }
该$函数根据传入的值构建一个 jQuery 对象。如果你不断地一遍又一遍地调用它,你就会一遍又一遍地构建同样的东西。很多人反而选择缓存结果,以避免重复。
$