HTML DOM console.group() 方法
JavaScript基础 2022-06-08 15:02:27小码哥的IT人生shichen
HTML DOM console.group() 方法
实例
在控制台中创建一组消息:
console.log("Hello world!");
console.group();
console.log("Hello again, this time inside a group!");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript console.group() 方法</h1>
<p>按键盘上的 F12 可在控制台视图中查看消息。</p>
<script>
console.log("Hello world!");
console.group();
console.log("Hello again, this time inside a group!");
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
console.group() 方法指示一个消息组的开始。
从现在开始,所有消息都将写入该组中。
提示:请使用 console.groupEnd() 方法 结束组。
提示:请使用 console.groupCollapsed 方法 隐藏消息组(默认折叠)。
浏览器支持
表格中的数字注明了完全支持该方法的首个浏览器版本。
方法 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
console.group() | 支持 | 11.0 | 4.0 | 4.0 | 支持 |
语法
console.group(label)参数值
参数 | 类型 | 描述 |
---|---|---|
label | 字符串 | 可选。组的标签。 |
更多实例
示例代码:
使用 console.groupEnd() 方法结束组:
console.log("Hello world!");
console.group();
console.log("Hello again, this time inside a group!");
console.groupEnd();
console.log("and we are back.");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript console.group() 方法</h1>
<p>使用 console.groupEnd() 方法结束一个组。</p>
<p>按键盘上的 F12 可在控制台视图中查看消息。</p>
<script>
console.log("Hello world!");
console.group();
console.log("Hello again, this time inside a group!");
console.groupEnd();
console.log("and we are back.");
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
示例代码:
为消息组指定标签:
console.log("Hello world!");
console.group("myLabel");
console.log("Hello again, this time inside a group, with a label!");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript console.group() 方法</h1>
<p>带有标签的消息组。</p>
<p>按键盘上的 F12 可在控制台视图中查看消息。</p>
<script>
console.log("Hello world!");
console.group("myLabel");
console.log("Hello again, this time inside a group, with a label!");
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html