Console.count() - Web API 接口参考 编辑
非标准
该特性是非标准的,请尽量不要在生产环境中使用它!
输出 count() 被调用的次数。此函数接受一个可选参数 label。
如果有 label
,此函数输出为那个指定的 label 和
count() 被调用的次数。
如果 label
被忽略,此函数输出 count() 在其所处位置上被调用的次数。
例如,下面的代码:
var user = "";
function greet() {
console.count();
return "hi " + user;
}
user = "bob";
greet();
user = "alice";
greet();
greet();
console.count();
Console 的输出如下:
"<no label>: 1" "<no label>: 2" "<no label>: 3" "<no label>: 1"
注意最后一行的日志输出:在 11 行对 count() 的单独调用是被当作一个独立事件来处理的。
如果把变量 user
当作 label 参数传给前面调用的 count(),把字符串 "alice" 传给后面调用的 count():
var user = "";
function greet() {
console.count(user);
return "hi " + user;
}
user = "bob";
greet();
user = "alice";
greet();
greet();
console.count("alice");
可以看到输出如下:
"bob: 1" "alice: 1" "alice: 2" "alice: 3"
现在可以基于不同的 label
值维护不同的数值。由于 11 行的 label 匹配了两次 user 的值,因此它不会被当作独立的事件。
语法
console.count([label]);
参数
label
字符串,如果有,count() 输出此给定的 label 及其
被调用的次数。
规范
Specification | Status | Comment |
---|---|---|
Console API console.count() | Living Standard | Initial definition |
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 30.0 (30.0) | (Yes) | (Yes) | (Yes) |
Available in workers | (Yes) | ? | 38.0 (38.0) | (Yes) | (Yes) | (Yes) |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | ? | (Yes) | 30.0 (30.0) | ? | ? | ? |
Available in workers | ? | ? | 38.0 (38.0) | ? | ? | ? |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论