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.

Number.prototype.toSource()

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

概述

toSource() 方法返回该对象源码的字符串表示。

语法

numObj.toSource();
Number.toSource();

参数

描述

toSource() 方法返回下列值:

  • 对于内置 Number 对象, toSource() 返回下面字符串,用来指明源码是不可见的。
function Number() { [native code] }
  • 对于 Number 对象的实例,toSource() 返回一个表示源码的字符串。

该方法通常被 JavaScript 内部调用,而不是在代码中显示调用。

规范

不是任何标准的一部分。在 JavaScript 1.3 被实现。

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support ? (Yes) ? ? ?
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? ? (Yes) ? ? ?

相关链接

文档标签和贡献者

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