在firefox检查器中查看函数源代码

时间:2014-04-17 09:32:11

标签: google-chrome firefox google-chrome-devtools web-inspector

在chrome中,当您在控制台中键入一个函数时,会输出该函数的源代码。例如

>    $.rails.confirm
     function (message) {
        return confirm(message);
      }

但是在firefox检查器的控制台中,它只是输出

[object Function]

如何在Firefox检查器中查看函数的源代码,例如chrome?

1 个答案:

答案 0 :(得分:2)

只需在控制台function.toString()中编写。例如:

alert.toString()将输出:

"function alert() {
    [native code]
}"