js自执行函数注意事项

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script>
//仅声明了函数,不会自执行,报错
function aa(){
console.log('aa');
}()
//自执行情况 </script>
<script>
//自执行情况
//小括号
(function(){
console.log('a1');
})(); //赋值操作
var a = function(){
console.log('a2');
}(); //逻辑运算符
!function(){
console.log('a3');
}(); //数学运算符
+function(){
console.log('a4');
}();
</script>
</body>
</html>

注意所写的代码是声明还是执行..

上一篇:Andrew Ng机器学习课程笔记--week8(K-means&PCA)


下一篇:angularjs1 实现地图添加自定义控件(搜索功能)及事件