溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么使用JS console.log函數(shù)

發(fā)布時(shí)間:2021-11-05 14:51:47 來(lái)源:億速云 閱讀:298 作者:iii 欄目:web開(kāi)發(fā)

這篇文章主要講解了“怎么使用JS console.log函數(shù)”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“怎么使用JS console.log函數(shù)”吧!

1. console.assert()

只想輸出選定日志時(shí)這一指令非常實(shí)用,它將只輸出錯(cuò)誤參數(shù),如果第一個(gè)參數(shù)正確,它就不起作用。

怎么使用JS console.log函數(shù)

斷言(assertion)

2. console.group() & console.groupEnd( )

可以使用控制臺(tái)將消息分組。

怎么使用JS console.log函數(shù)

將消息分組

3. console.trace()

該方法會(huì)追蹤并顯示代碼在何時(shí)終止運(yùn)行。

怎么使用JS console.log函數(shù)

追蹤

4. console.count()

該函數(shù)記錄count()函數(shù)的調(diào)用次數(shù),有一個(gè)可選的參數(shù)label。

如果調(diào)用時(shí)提供了label,該函數(shù)將記錄使用該特定label調(diào)用count()的次數(shù)。

如果調(diào)用時(shí)省略label,函數(shù)將記錄在這一行調(diào)用count()的次數(shù)。

怎么使用JS console.log函數(shù)

計(jì)數(shù)

5. console.table ()

希望看到合適易讀的JSON文本嗎?

怎么使用JS console.log函數(shù)

對(duì)數(shù)組進(jìn)行更好的可視化處理!

6. 在控制臺(tái)消息中添加樣式

所有控制臺(tái)消息看起來(lái)都一樣嗎?現(xiàn)在就不一樣了,讓調(diào)試日志中重要的部分看起來(lái)更加醒目。

怎么使用JS console.log函數(shù)

帶顏色的消息

可以通過(guò)以下方式改變?nèi)罩局刑囟▎卧~的顏色:

怎么使用JS console.log函數(shù)

高亮顯示特定單詞

7. console.time()

console.time()用于跟蹤操作耗時(shí),它是跟蹤JavaScript執(zhí)行所耗費(fèi)的短暫時(shí)間的好方法。

怎么使用JS console.log函數(shù)

8. 控制臺(tái)中的HTML

從控制臺(tái)中獲取HTML元素,跟檢查元素的方式相同。

怎么使用JS console.log函數(shù)

HTNL元素展示

9. console.dir()

輸出指定對(duì)象的JSON形式。

怎么使用JS console.log函數(shù)

10. console.memory( )

想知道Javascript應(yīng)用占用了多少瀏覽器內(nèi)存?

怎么使用JS console.log函數(shù)

內(nèi)存

11. 使用占位符

各種不同的占位符如下所示:

  • %o :接受一個(gè)對(duì)象,

  • %s :接受一個(gè)字符串

  • %d :接受一個(gè)小數(shù)或整數(shù)

怎么使用JS console.log函數(shù)

占位符介紹

12. console.log() | info( ) | debug( ) | warn( ) | error( )

這些語(yǔ)句將根據(jù)事件的類型用不同顏色標(biāo)識(shí)原始字符串。

怎么使用JS console.log函數(shù)

13. console.clear( )

最后但也很重要的一點(diǎn)是,使用clear()命令清除所有控制臺(tái)消息。

以下是要點(diǎn)補(bǔ)充。

// time and time end console.time("This"); let total =0; for (let j =0; j <10000; j++) { total += j } console.log("Result", total); console.timeEnd("This"); // Memory console.memory() // Assertion consterrorMsg='Hey! The number is not even'; for (let number =2; number <=5; number +=1) { console.assert(number %2===0, {number: number, errorMsg: errorMsg}); } // Count for (let i =0; i <11; i++) { console.count(); } // group & groupEnd console.group(); console.log('Test message'); console.group(); console.log('Another message'); console.log('Something else'); console.groupEnd(); console.groupEnd(); // Table constitems= [ { name:"chair", inventory:5, unitPrice:45.99 }, { name:"table", inventory:10, unitPrice:123.75 }, { name:"sofa", inventory:2, unitPrice:399.50 } ]; console.table(items) // Clear console.clear() // HTML Element let element =document.getElementsByTagName("BODY")[0]; console.log(element) // Dir constuserInfo= {"name":"John Miller", "id":2522, "theme":"dark"} console.dir(userInfo); // Color console.log('%cColor of the text is green plus small font size', 'color: green; font-size: x-small'); // pass object, variable constuserDetails= {"name":"John Miller", "id":2522, "theme":"dark"} console.log("Hey %s, here is your details %o in form of object", "John", userDetails); // Default console.log('console.log'); console.info('console.info'); console.debug('console.debug'); console.warn('console.warn'); console.error('console.error');

感謝各位的閱讀,以上就是“怎么使用JS console.log函數(shù)”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)怎么使用JS console.log函數(shù)這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

js
AI