Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Function.prototype.toSource()

非标准
该特性是非标准的,请尽量不要在生产环境中使用它!

概述

返回函数的源代码的字符串表示.

语法

function.toSource();
Function.toSource();

参数

描述

toSource方法返回下面的值:

  • 对于内置的Function对象,toSource返回下面的字符串:
function Function() {
    [native code]
}
  • 对于自定义函数来说, toSource返回能定义该函数的Javascript源码.

该方法通常在引擎内部调用.你可以在调试的时候用该方法开查看一个函数的源代码.

相关链接

文档标签和贡献者

 此页面的贡献者: teoli, ziyunfei
 最后编辑者: teoli,