标签:
firebug再前端调试中起到了很好的作用能看到DOM的性能,以及检测,比如运用console.log()就是要比alert();好一些这样增强的页面的连续性并且console.warn()和console.error也在浏览器中的控制台中报错或者弹出警告,这样也是很有用的,如果运用多个log是不容易看清的,这样就可以这样分组 //console.group("this is one");
//console.log(1);
//console.groupEnd();这样分组的好处就是能看出需要调试的是哪一代码;有的时候console.log不能完全显示这样就能吧log换位dir这样就能完全显示
虽然这个在谷歌和火狐上是有用的,但是在IE上也是可以的只需要在有网的情况下加入<script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>这一样代码,在在IE也就可以用了
也可以先把资源下载下来https://getfirebug.com/firebuglite然后在文件里引用就可以了
<html>
<head>版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/woshinannan741/article/details/46842097