日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

多才多艺的console

發布時間:2025/4/5 编程问答 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 多才多艺的console 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

原文鏈接:http://www.thecssninja.com/javascript/console

記下一部分精華:

console.log函數可以寫一些有用的信息到控制臺,但是很少有人用到,console還包含大概其他20多個函數可以用,提供了多種多樣的功能。

1.log函數可以用多個參數

var foo = {baz: "tubular", goo: "rad"}, bar = "baz"; console.log("string",1,foo.goo,bar,foo.baz); // string 1 rad baz tubular

2.log函數可以格式化輸出

var foo = {baz: "tubular", goo: "rad"}, bar = "baz"; console.log("%s theory is %d %s concept. I can only describe it as %s and %s","string", 1, foo.goo, bar, foo.baz ); // string theory is 1 rad concept. I can only describe it as baz and tubular

3.多種信息

console.info,console.error,console.warn

4.記錄dom

console.dir(document.documentElement); console.dirxml(document.documentElement);

5.分組

console.group(), console.groupCollapsed() 和console.groupEnd().可以折疊一個組的顯示。

6.計時

console.time("Execution time took"); // Some code to execute console.timeEnd("Execution time took");

7.profiling

console.profile(); // Some code to execute console.profileEnd();

8.斷言

var a = 1, b = "1"; console.assert(a === b, "A doesn't equal B");

  

?9.trace

打印stack trance,(還不知道咋用)

?

?

轉載于:https://www.cnblogs.com/billowdragon/archive/2012/08/30/2664102.html

總結

以上是生活随笔為你收集整理的多才多艺的console的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。