0 2018-06-07 JS函数 1.匿名函数:不能单独写在页面内作用:赋值,传参(匿名函数可作为参数) 2.有名函数:在function后加名字(1)可加括号自执行(2)可把名字直接放在事件位置 例: 1234function a(){ alert(666); } document.onclick = a; 回顾:数据类型:num String boolean null undefine