js常見錯誤型別

2021-09-25 21:58:20 字數 367 閱讀 3684

js 錯誤型別

a、uncaught typeerror: failed to execute 『getcomputedstyle』 on 『window』: parameter 1 is not of type 『element』.

未捕獲的型別錯誤:不能在「視窗」環境上呼叫執行「getcomputedstyle」方法:因為引數1不是「元素」型別沒有填入引數或者填入引數的第乙個引數不是對應引數型別的(錯誤是引入了兩個js檔案)

b、 uncaught typeerror: cannot set property 『init』 of undefined

未捕獲的型別錯誤:無法設定取消定義的屬性「init」; 句子中prototype 寫成prototyle

js 常見錯誤型別

1 syntaxerror syntaxerror是解析 時發生的語法錯誤 變數名錯誤 var1a 缺少括號 console.log hello 2 referenceerror referenceerror是引用乙個不存在的變數時發生的錯誤。unknownvariable referenceerr...

js中常見的錯誤型別

當 try 語句塊中的 出現錯誤時,會建立並丟擲乙個 error 物件,物件中包含錯誤型別和錯誤描述兩個屬性 error.response 錯誤型別 說明evalerror 使用 eval 函式時發出錯誤,會丟擲該錯誤 internalerror 由 j ascript 引擎內部錯誤導致的異常,會丟...

JS錯誤型別

一 syntaxerror 語法錯誤 這種錯誤是最低階的錯誤但是最常見的錯誤,這是在開發中多個標點少個括號,常見於新手 二 referenceerror 引用錯誤 呼叫的變數或者方法未被定義便會報此錯誤 三 typeerror 型別錯誤 資料型別錯誤,最常見的是vue中父傳子時props接收引數時容...