您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么使用JS console.log函數”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么使用JS console.log函數”吧!
1. console.assert()
只想輸出選定日志時這一指令非常實用,它將只輸出錯誤參數,如果第一個參數正確,它就不起作用。
斷言(assertion)
2. console.group() & console.groupEnd( )
可以使用控制臺將消息分組。
將消息分組
3. console.trace()
該方法會追蹤并顯示代碼在何時終止運行。
追蹤
4. console.count()
該函數記錄count()函數的調用次數,有一個可選的參數label。
如果調用時提供了label,該函數將記錄使用該特定label調用count()的次數。
如果調用時省略label,函數將記錄在這一行調用count()的次數。
計數
5. console.table ()
希望看到合適易讀的JSON文本嗎?
對數組進行更好的可視化處理!
6. 在控制臺消息中添加樣式
所有控制臺消息看起來都一樣嗎?現在就不一樣了,讓調試日志中重要的部分看起來更加醒目。
帶顏色的消息
可以通過以下方式改變日志中特定單詞的顏色:
高亮顯示特定單詞
7. console.time()
console.time()用于跟蹤操作耗時,它是跟蹤JavaScript執行所耗費的短暫時間的好方法。
8. 控制臺中的HTML
從控制臺中獲取HTML元素,跟檢查元素的方式相同。
HTNL元素展示
9. console.dir()
輸出指定對象的JSON形式。
10. console.memory( )
想知道Javascript應用占用了多少瀏覽器內存?
內存
11. 使用占位符
各種不同的占位符如下所示:
%o :接受一個對象,
%s :接受一個字符串
%d :接受一個小數或整數
占位符介紹
12. console.log() | info( ) | debug( ) | warn( ) | error( )
這些語句將根據事件的類型用不同顏色標識原始字符串。
13. console.clear( )
最后但也很重要的一點是,使用clear()命令清除所有控制臺消息。
以下是要點補充。
// 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函數”的內容了,經過本文的學習后,相信大家對怎么使用JS console.log函數這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。