这里是最近使用firebug的一个补充记录,以后也会不断更新。
列出一个object的所有内容
在console上使用命令``` console.dir(obj)
可以查看一个object所包含的方法,属性
firebug提供的console对象有哪些方法
------------------------
用dir方法看一下console本身即可```
console.dir(console)
console用法列表
console.time("test timer");
console.log("Hello from ",document.title);
console.info("This is info");
console.warn("This is warning");
console.error("This is error");
console.timeEnd("test timer");