We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
expand recursively
var a = 1, b = 2, c = 3; console.log(a,b,c); // 1 2 3 console.log({a, b, c}); // {a: 1, b: 2, c: 3} console.table({a,b,c});
The text was updated successfully, but these errors were encountered:
No branches or pull requests
常用快捷键
面板快捷键操作
打开开发者工具
打开开发者工具控制面板
打开开发者工具并定位在Element面板
打开开发者工具并把焦点放在控制台上
面板切换
改变开发者工具停靠位置(内嵌或独立窗口)
Elements 面板
打开移动设备调试模式
刷新页面并清除缓存
在当前文件或面板中搜索文本
在所有来源中搜索文本
按文件名搜索 (时间轴除外)
放大缩小(当焦点在开发者工具上)
展开选中节点下所有子节点
expand recursively
浏览DOM结构
快速移动节点位置
快速隐藏选中节点
编辑DOM节点名称或属性
保存更改的节点
Sources 面板
跳转到指定行
以文件名搜索
Sources面板关闭活动的标签
运行代码片段
转到匹配的括号
找到相同的内容
Console 面板
清空控制台
将HTML对象转换为JS对象
将对象以XML的方式显示
使用CSS格式化输出内容
使用表格的方式显示JSON数据
打印堆栈跟踪
输出更容易读的日志信息
开启任务管理器
The text was updated successfully, but these errors were encountered: