JavaScript 錯誤參考資料
在這裡,你可以看到一些由 JavaScript 拋出的錯誤一覽。這些錯誤訊息對你的除錯很有幫助,但拋出的錯誤也不是每次都能講清楚。本頁回提供這些錯誤的詳細資訊。所有的錯誤都是由 Error
物件所建立的物件,有著 name
與 message
。
錯誤會出現在網路主控台、可能還連接到相應頁面,以幫助你儘速理解程式碼裡面的問題。
錯誤一覽表
In this list, each page is listed by name (the type of error) and message (a more detailed human-readable error message). Together, these two properties provide a starting point toward understanding and resolving the error. For more information, follow the links below!
- InternalError: too much recursion
- RangeError: invalid array length
- ReferenceError: "x" is not defined
- SyntaxError: missing } after property list
- SyntaxError: redeclaration of formal parameter "x"
- SyntaxError: return not in function
- TypeError: "x" has no properties
- TypeError: "x" is (not) "y"
- TypeError: "x" is not a function
參見
- 哪裡出錯了?JavaScript 除錯:針對初學者的 JavaScript 除錯入門教程。