js调试技巧 Firefox调试技巧汇总

 

Firebug入门指南        :  http://www.ruanyifeng.com/blog/2008/06/firebug_tutorial.html

Firebug控制台详解: http://www.cnblogs.com/see7di/archive/2011/11/21/2257442.html

              http://www.cnblogs.com/leejersey/archive/2012/11/27/2790998.html

debugger:

 

js中调用console写日志

 

console.log("some log");

 

console.warn("some warning");

 

console.error("some error");

 

IE:只有在打开IE开发者工具后才能使用console,默认访问IE的console对象会出错。

 

FF和Chrome没有问题。

 

 

posted on 2014-06-20 17:05  andydaopeng  阅读(319)  评论(0编辑  收藏  举报

导航