移动端开发devtools

来源:eruda

CDN:https://cdn.bootcss.com/eruda/1.2.6/eruda.min.js

用法:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script src="https://cdn.bootcss.com/eruda/1.2.6/eruda.min.js"></script>
<script>
window.eruda.init();
// 自定义显示面板,默认全显示
// window.eruda.init({
// tool: ['console', 'element']
// });
</script>

<script>
// test
console.log('11111');

var obj = {
a: '1',
b: '2',
c: '3'
};
console.log(obj);
console.dir(obj);

window.localStorage.setItem('a', '123');
</script>

DEMO:

非常感谢liriliri提供的eruda工具,非常赞

相同功能的工具:Tencent vConsole