定义形式:
1.
function mothod_name(){
代码块;
}
2.匿名函数表达式
var mothod_name=function(){
代码块;
}
3.命名函数表达式
var text = function mothod_name(){
代码块;
}
eg: function first(){
document.write("HelloWorld");
}
- 传入实参时实参可多于形参也可少于形参
1.
function mothod_name(){
代码块;
}
2.匿名函数表达式
var mothod_name=function(){
代码块;
}
3.命名函数表达式
var text = function mothod_name(){
代码块;
}
eg: function first(){
document.write("HelloWorld");
}
本文标题:函数闭包
本文链接:https://www.haomeiwen.com/subject/knlmjftx.html
网友评论