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.

Performance.toJSON()

这篇文章需要技术复核。如何帮忙。

我们的志愿者还没有将这篇文章翻译为 中文 (简体)加入我们帮助完成翻译!

The toJSON() method of the Performance interface is a standard serializer: it returns a JSON representation of the performance object's properties.

Syntax

myPerf = performance.toJSON()

Arguments

None
 

Return value

myPerf
A JSON object that is the serialization of the Performance object.

Example

var js;
js = window.performance.toJSON();
console.log("json = " + JSON.stringify(js));

Specifications

Specification Status Comment
High Resolution Time Level 2
The definition of 'toJSON() serializer' in that specification.
Editor's Draft Defines toJson().

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
toJSON() No support 25.0 (25.0) ? No support No support
Feature Android Android Webview Firefox Mobile (Gecko) Firefox OS IE Phone Opera Mobile Safari Mobile Chrome for Android
toJSON() No support No support 25.0 (25.0) 1.2 (25.0) ? No support ? No support

文档标签和贡献者

 此页面的贡献者: jpmedley, rolfedh, AFBarstow
 最后编辑者: jpmedley,