1.console.log();
相当于alert();不过结果输出到firebug控制台,终于不用一次一次点击提示框了阿!
2.console.log("this one %s and this second %s",a,b);
相当于alert("this one"+a+"and this second"+b);
3.console.info();console.warn();console.error();
分别在输出信息前面加上不同的警示标志
4.debugger;
类似于单步调试
5.console.time("do this");console.timeEnd("do time");
测试没有成功不知道为什么啊