我正在阅读 jquery1.9.1 源代码。一开始,它说:
// Can't do this because several apps including ASP.NET trace
// the stack via arguments.caller.callee and Firefox dies if
// you try to trace through "use strict" call chains. (#13335)
// Support: Firefox 18+
//"use strict";
我读过票 #13335 说因为像 ASP.NET 跟踪调用堆栈之类的应用程序通过 arguments.caller.callee,“使用严格”被删除。
但我不明白“支持:Firefox 18+”是什么意思?
这是否意味着,如果您使用 firefox 18+,“使用严格”将适用于 ASP.NET 等应用程序?