跳到主要内容

匿名函数

function() {
alert('hello');
}

没有函数名,一般这么用:

var myButton = document.querySelector("button");

myButton.onclick = function () {
alert("hello");
};
备注

备注: 匿名函数也称为函数表达式。函数表达式与函数声明有一些区别。函数声明会进行声明提升(declaration hoisting),而函数表达式不会。

备注

备注: 参数有时称为参数(argument)、属性(propertie)或甚至特性(attribute)。