有没有什么方法,在javascript中,获取函数的名称,在被调用的函数内

时间:2011-09-06 16:37:52

标签: javascript

  

可能重复:
  Can I get the name of the currently running function in javascript?
  Get function name in javascript

在javascript中,有没有办法在被调用的函数内获取函数的名称。

function something() {
   console.log( "The name of the function you invoke is " ...should says 'something' );
}

1 个答案:

答案 0 :(得分:0)

function something(){
    alert(arguments.callee.name);
}