Javascript的自执行函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Javascript的自执行函数相关的知识,希望对你有一定的参考价值。
自执行函数其实也就是“立即执行的函数”,它有四个特点:提高性能、利于压缩、避免冲突、依赖加载;
1、减少作用域查找
JS代码:
1 // Anonymous function that has three arguments 2 function(window, document, $) { 3 4 // You can now reference the window, document, and jQuery objects in a local scope 5 6 }(window, document, window.jQuery); // The global window, document, and jQuery objects are passed into the anonymous function
也就是将作用域放到自执行函数的作用域中,javascript解释器首先会现在自执行函数的作用域内查找,其次再去全局查找。
以上是关于Javascript的自执行函数的主要内容,如果未能解决你的问题,请参考以下文章
更改页面javascript代码(TamperMonkey)以将键盘笔触发送到父DOM