Firebug console API
程序员文章站
2022-04-30 13:58:58
...
这里除了console.dirxml()的功能有缺陷之外,其他的都是能够实现的,dirxml的解析不成功的原因,明天再回来看一下:
FYI:http://blogread.cn/it/article/3459?f=hot1
FYI:http://blogread.cn/it/article/3459?f=hot1
<html> <title> hello </title> <script type="text/javascript"> console.log('it is log for console'); console.error('it is error for console'); var dog={}; dog.name='wang'; dog.color='yellow'; dog.bark =function(){ alert('汪汪汪'); } console.dir(dog); console.log("%o",dog); var table = document.getElementById("table1"); console.dirxml(table); console.dirxml(document.body); var result = 0; console.assert(result); var year = 2001; console.assert(result==year); function add(a,b){ console.trace(); return a+b; } //alert(add(1,2)); console.time("timer"); for(var i = 0; i < 1000;i++){ for(var jj = 0; jj<1000;jj++){} } console.timeEnd("timer"); function foo(){ for(var i = 0; i < 10; i++){funcA(1000);} funcB(10000); } function funcA(count){ for(var i = 0; i< count;i++){} } function funcB(count){ for(var i = 0; i< count;i++){} } //alert(foo()); console.profile("fenxi"); foo(); console.profileEnd(); console.group('first group'); console.log('aa'); console.log('bb'); console.groupEnd(); </script> <body> <p>This is my first paragraph.</p> hell,world! <table id="table1" border=1> <tr> <td>11</td> <td>22</td> <td>33</td> </tr> </table> </body> </html>
推荐阅读
-
使用LLVM 封装的API生成IR常用方法总结
-
【微信原生支付】——服务商,小微商户专属接口:小微商户新增对应APPID关联API,使用注意
-
Python实现从百度API获取天气的方法
-
jquery api参考 visualjquery 中国线路 速度快_jquery
-
浅析Node.js 中 Stream API 的使用
-
一款,整合百度翻译api跟有道翻译api的翻译君
-
python爬虫scrapy运行ImportError:Nomodulenamedwin32api错误解决办法
-
java - PHP curl模拟POST问题,为什么明明是模拟的是POST,firebug仍显示GET?
-
运用MySQL C语言API 出错的问题
-
关于新浪微博API中授权登录的一些有关问题