摘要: Google 浏览器 崩溃了视频下载 阅读全文
posted @ 2008-09-04 17:58 ABeen 阅读(507) 评论(0) 推荐(0) 编辑
摘要: Firebug Script 调试记录 * Your new friend, console.log //显示变量 参数 console.log, console.debug, console.info, console.warn, console.error... console.log("hello world") console.log(2,4,6,8,"foo",bar) console.log("%a,%b","foo",bar) // "%"用于定义量 console.log("%s is %d years old.", "Bob", 42). * Timing and profiling // 时间及性能分析 console.profile(); //性能开始 console.time("test"); //时间开始 function Test() { for(var i = 0; i 10; i++) { console.info("t 阅读全文
posted @ 2008-09-04 17:16 ABeen 阅读(606) 评论(0) 推荐(0) 编辑