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()

This article needs an editorial review. How you can help.

Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

El mètode toSource()retorna una cadena que representa el codi font de l'objecte.

Sintaxi

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

Paràmetres

Cap.

Descripció

El mètode toSource retorna els valors següents:

  • Per l'objecte incorporat Function, toSource() retorna la cadena següent indicant que el codi font no es troba disponible:
    function Function() {
        [native code]
    }
    
  • Per funcions personalitzades, toSource() retorna la font de JavaScript que defineix l'objecte com una cadena.

Aquest mètode se sol cridar internament per JavaScript i no explícitament en el codi. Podeu cridar toSource durant la depuració per examinar el contingut d'un objecte.

Especificacions

No forma part de cap estàndard. Implementat en JavaScript 1.3.

Compatibilitat amb navegadors

Característica Chrome Firefox (Gecko) Internet Explorer Opera Safari
Suport bàsic Not supported (Yes) ? ? ?
Característica Android Chrome per Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Suport bàsic ? ? (Yes) ? ? ?

Vegeu també

Document Tags and Contributors

 Contributors to this page: llue
 Last updated by: llue,