请参阅下文,了解Firefox和Chrome控制台中发生的情况:
> var f = function() {} undefined > f.name = 'f' "f" > f.name "" > f.id = 1 1 > f.id 1
为什么f.name =’f’是无操作?
解决方法
可能取决于实施.
在某些实现中,函数对象的name属性用作函数的名称(如果有的话).在这些情况下,这可能是只读的.
这是一个非标准功能.
例如:
var foo = function bar() {}; alert(foo.name); // will give "bar" in some cases.
在Firefox和Chrome中,如果我尝试修改它,它将不会改变…
var foo = function bar() {}; foo.name = "baz"; alert(foo.name); // still "bar" in Firefox and Chrome
以下是文档中的一些要点……
“Non-standard“
“The name property returns the name of a function,or an empty string for anonymous functions”
“You cannot change the name of a function,this property is read-only”