Console.timeLog() - Web APIs 编辑

Logs the current value of a timer that was previously started by calling console.time() to the console.

See Timers in the documentation for details and examples.

Note:

This feature is available in Web Workers.

Syntax

console.timeLog(label);

Parameters

label
The name of the timer to log to the console.

Return

If no label parameter included:

default: 1042ms

If an existing label is included:

timer name: 1242ms

Exceptions

If there is no running timer, timeLog() returns the warning:

Timer “default” doesn’t exist.

If a label parameter is included, but there is no corresponding timer:

 Timer “timer name” doesn’t exist. 

Examples

console.time("answer time");
alert("Click to continue");
console.timeLog("answer time");
alert("Do a bunch of other stuff...");
console.timeEnd("answer time");

The output from the example above shows the time taken by the user to dismiss the first alert box, followed by the time it took for the user to dismiss the second alert:

timerresult.png

Notice that the timer's name is displayed when the timer value is logged using timeLog() and again when it's stopped. In addition, the call to timeEnd() has the additional information, "timer ended" to make it obvious that the timer is no longer tracking time.

Specifications

SpecificationStatusComment
Console API
The definition of 'console.timeLog()' in that specification.
Living StandardInitial definition

Browser compatibility

BCD tables only load in the browser

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:78 次

字数:3463

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文