立即执行函数一般只执行一次
<!DOCTYPE html>
<html>
<body>
<script>
(function(){
alert("匿名函数")
})();
</script>
</body>
</html>
(function(a){
alert("a="+a);
} ) (12);
立即执行函数一般只执行一次
<!DOCTYPE html>
<html>
<body>
<script>
(function(){
alert("匿名函数")
})();
</script>
</body>
</html>
(function(a){
alert("a="+a);
} ) (12);