Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 我可以在 javascript 中获取当前正在运行的函数的名称吗?
在 Javascript 中有没有一种方法可以获取在其中执行 javascript 的方法/函数的名称。我想
alert('在方法内部运行时出现此消息' + GetCurrentMethodName());
像这样使用arguments.callee.name:
arguments.callee.name
alert('This message is coming while running inside the method ' + arguments.callee.name);