如果assert為false ,console.assert()方法會(huì)將錯(cuò)誤消息寫入控制臺(tái)。
如果assert為true,則什么都不會(huì)發(fā)生。
console.assert(assertion, message)
console.assert(document.getElementById("result"), "沒(méi)有ID元素'result'");測(cè)試看看?/?
所有瀏覽器都完全支持console.assert()方法:
Method | ![]() | ![]() | ![]() | ![]() | ![]() |
console.assert() | 是 | 是 | 是 | 是 | 是 |
參數(shù) | 描述 |
---|---|
assertion | 任何布爾表達(dá)式。如果assert為false,則將消息寫入控制臺(tái) |
message | 要在控制臺(tái)中寫入的字符串或?qū)ο?/td> |
此示例將字符串寫入控制臺(tái):
console.assert(false, "Hello world!!!");測(cè)試看看?/?
本示例將一個(gè)對(duì)象寫入控制臺(tái):
var myObj = { str: "Some text", id: 12 }; console.assert(document.getElementById("result"), myObj);測(cè)試看看?/?
本示例將一個(gè)數(shù)組寫入控制臺(tái):
var arr = ["Item1", "Item2", "Item3", "Item4"]; console.assert(document.getElementById("result"), arr);測(cè)試看看?/?