20180831 匿名函数自动调用表达式
Posted goakon
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20180831 匿名函数自动调用表达式相关的知识,希望对你有一定的参考价值。
引用: https://www.runoob.com/js/js-function-definition.html
匿名函数自动调用表达式: (function(){})()
1 <p id="demo"></p> 2 3 <script> 4 (function(){document.getElementById("demo").innerhtml = "Hello World!";})() 5 </script>
Output: Hello World!
以上是关于20180831 匿名函数自动调用表达式的主要内容,如果未能解决你的问题,请参考以下文章