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.
我可以读写一些JavaScript,但今天我遇到了一个以.js开头的文件
JavaScript
.js
!function() { /* code here */ }.call(window);
问题
是什么!意思function?
!
function
它返回使用“this”窗口调用匿名函数的结果的“not”(!)。
否定结果.call(window)。不是功能。
.call(window)