這篇文章主要講解了“怎么使用JS console.log函數(shù)”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“怎么使用JS console.log函數(shù)”吧!
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、小程序設(shè)計(jì)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了永吉免費(fèi)建站歡迎大家使用!
1. console.assert()
只想輸出選定日志時(shí)這一指令非常實(shí)用,它將只輸出錯(cuò)誤參數(shù),如果第一個(gè)參數(shù)正確,它就不起作用。
斷言(assertion)
2. console.group() & console.groupEnd( )
可以使用控制臺將消息分組。
將消息分組
3. console.trace()
該方法會追蹤并顯示代碼在何時(shí)終止運(yùn)行。
追蹤
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ù)。
計(jì)數(shù)
5. console.table ()
希望看到合適易讀的JSON文本嗎?
對數(shù)組進(jìn)行更好的可視化處理!
6. 在控制臺消息中添加樣式
所有控制臺消息看起來都一樣嗎?現(xiàn)在就不一樣了,讓調(diào)試日志中重要的部分看起來更加醒目。
帶顏色的消息
可以通過以下方式改變?nèi)罩局刑囟▎卧~的顏色:
高亮顯示特定單詞
7. console.time()
console.time()用于跟蹤操作耗時(shí),它是跟蹤JavaScript執(zhí)行所耗費(fèi)的短暫時(shí)間的好方法。
8. 控制臺中的HTML
從控制臺中獲取HTML元素,跟檢查元素的方式相同。
HTNL元素展示
9. console.dir()
輸出指定對象的JSON形式。
10. console.memory( )
想知道Javascript應(yīng)用占用了多少瀏覽器內(nèi)存?
內(nèi)存
11. 使用占位符
各種不同的占位符如下所示:
%o :接受一個(gè)對象,
%s :接受一個(gè)字符串
%d :接受一個(gè)小數(shù)或整數(shù)
占位符介紹
12. console.log() | info( ) | debug( ) | warn( ) | error( )
這些語句將根據(jù)事件的類型用不同顏色標(biāo)識原始字符串。
13. console.clear( )
最后但也很重要的一點(diǎn)是,使用clear()命令清除所有控制臺消息。
以下是要點(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)過本文的學(xué)習(xí)后,相信大家對怎么使用JS console.log函數(shù)這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!