非常教程

JavaScript参考手册

错误 | Errors

Errors: Unterminated string literal

信息

SyntaxError: unterminated string literal

错误类型

SyntaxError

哪里出错了?

某处 js 解析字符串出错。字符串必须使用单引号或双引号来正确的关闭。在 Javascript 中使用单引号的字符和双引号的字符串是没有区别的。字符串用转义字符不是单引号就是双引。为解决这个错误,检查一下:

  • 你字符串的引号是否成对。

  • 你是否正确使用了转义序列

  • 你的字符串是否在多行中解析正常。

示例

多行字符串

在javascript中你不能够直接使用多行字符串赋值给一个变量。如下:

var longString = 'This is a very long string which needs 
                  to wrap across multiple lines because 
                  otherwise my code is unreadable.';
// SyntaxError: unterminated string literal

可以使用"+"运算符,反斜杠,或模板字符串来代替多行。“+”运算符的使用如下:

var longString = 'This is a very long string which needs ' +
                 'to wrap across multiple lines because ' +
                 'otherwise my code is unreadable.';

或者你可以使用“\”在每一行的末尾,以表示该字符串在下一行继续。要确保“\“之后没有没有空格和任何其他的字符,及缩进,否则该“\”将不会起作用。使用方法如下:

var longString = 'This is a very long string which needs \
to wrap across multiple lines because \
otherwise my code is unreadable.';

另一种方式是使用 ES 2015 的环境所支持模板字符串(反引号` `)。

var longString = `This is a very long string which needs 
                  to wrap across multiple lines because
                  otherwise my code is unreadable.`;

错误 | Errors相关

1.Error
2.error.message
3.error.name
4.Error.prototype
5.error.toString
6.Errors
7.Errors: Already has pragma
8.Errors: Array sort argument
9.Errors: Bad octal
10.Errors: Bad radix
11.Errors: Bad regexp flag
12.Errors: Bad return or yield
13.Errors: Called on incompatible type
14.Errors: Cant access lexical declaration before init
15.Errors: Cant define property object not extensible
16.Errors: Cant delete
17.Errors: Cant redefine property
18.Errors: Cyclic object value
19.Errors: Dead object
20.Errors: Delete in strict mode
21.Errors: Deprecated caller or arguments usage
22.Errors: Deprecated expression closures
23.Errors: Deprecated octal
24.Errors: Deprecated source map pragma
25.Errors: Deprecated String generics
26.Errors: Deprecated toLocaleFormat
27.Errors: Equal as assign
28.Errors: For-each-in loops are deprecated
29.Errors: Getter only
30.Errors: Identifier after number
31.Errors: Illegal character
32.Errors: in operator no object
33.Errors: Invalid array length
34.Errors: Invalid assignment left-hand side
35.Errors: Invalid const assignment
36.Errors: Invalid date
37.Errors: Invalid for-in initializer
38.Errors: Invalid for-of initializer
39.Errors: JSON bad parse
40.Errors: Malformed formal parameter
41.Errors: Malformed URI
42.Errors: Missing bracket after list
43.Errors: Missing colon after property id
44.Errors: Missing curly after function body
45.Errors: Missing curly after property list
46.Errors: Missing formal parameter
47.Errors: Missing initializer in const
48.Errors: Missing name after dot operator
49.Errors: Missing parenthesis after argument list
50.Errors: Missing parenthesis after condition
51.Errors: Missing semicolon before statement
52.Errors: More arguments needed
53.Errors: Negative repetition count
54.Errors: No non-null object
55.Errors: No properties
56.Errors: No variable name
57.Errors: Non configurable array element
58.Errors: Not a codepoint
59.Errors: Not a constructor
60.Errors: Not a function
61.Errors: Not defined
62.Errors: Precision range
63.Errors: Property access denied
64.Errors: Read-only
65.Errors: Redeclared parameter
66.Errors: Reserved identifier
67.Errors: Resulting string too large
68.Errors: Stmt after return
69.Errors: Strict Non Simple Params
70.Errors: Too much recursion
71.Errors: Typed array invalid arguments
72.Errors: Undeclared var
73.Errors: Undefined prop
74.Errors: Unexpected token
75.Errors: Unexpected type
76.Errors: Unnamed function statement
77.Errors: Var hides argument
78.EvalError
79.EvalError.prototype
80.RangeError
81.RangeError.prototype
82.ReferenceError
83.ReferenceError.prototype
84.SyntaxError
85.SyntaxError.prototype
86.TypeError
87.TypeError.prototype
88.URIError
89.URIError.prototype
JavaScript

JavaScript 是一种高级编程语言,通过解释执行,是一门动态类型,面向对象(基于原型)的解释型语言。它已经由ECMA(欧洲电脑制造商协会)通过 ECMAScript 实现语言的标准化。它被世界上的绝大多数网站所使用,也被世界主流浏览器( Chrome、IE、FireFox、Safari、Opera )支持。JavaScript 是一门基于原型、函数先行的语言,是一门多范式的语言,它支持面向对象编程,命令式编程,以及函数式编程。它提供语法来操控文本、数组、日期以及正则表达式等,不支持 I/O,比如网络