非常教程

JavaScript参考手册

错误 | Errors

Errors: Bad regexp flag

信息

SyntaxError: invalid regular expression flag "x" (Firefox)
SyntaxError: Invalid regular expression flags (Chrome)

错误类型

SyntaxError

错哪里了?

代码中有无效的正则表达式标志。在正则表达式中,由斜杠之间的模式组成,标志在第二个标志之后定义。它们也可以在RegExp对象的构造函数中定义(第二个参数)。正则表达式标志可以单独使用或以任意顺序一起使用,但ECMAScript中只有五种。

要使用正则表达式包含标志,请使用以下语法:

var re = /pattern/flags;

或者

var re = new RegExp('pattern', 'flags');

Flag

Description

g

Global search.

i

Case-insensitive search.

m

Multi-line search.

u

Unicode; treat pattern as a sequence of Unicode code points

y

Perform a "sticky" search that matches starting at the current position in the target string. See sticky

示例

只有五个有效的正则表达式标志。

/foo/bar;

// SyntaxError: invalid regular expression flag "b"

你打算创建一个正则表达式吗?包含两个斜杠的表达式被解释为一个正则表达式文字。

let obj = {
  url: /docs/Web
};

// SyntaxError: invalid regular expression flag "W"

还是你的意思是创建一个字符串?添加单引号或双引号来创建字符串文字。

let obj = {
  url: '/docs/Web'
};

有效的正则表达式标志

有关JavaScript中允许的五个有效正则表达式标志,请参见上面的表格。

/foo/g;
/foo/gim;
/foo/uy;

错误 | 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 return or yield
12.Errors: Called on incompatible type
13.Errors: Cant access lexical declaration before init
14.Errors: Cant define property object not extensible
15.Errors: Cant delete
16.Errors: Cant redefine property
17.Errors: Cyclic object value
18.Errors: Dead object
19.Errors: Delete in strict mode
20.Errors: Deprecated caller or arguments usage
21.Errors: Deprecated expression closures
22.Errors: Deprecated octal
23.Errors: Deprecated source map pragma
24.Errors: Deprecated String generics
25.Errors: Deprecated toLocaleFormat
26.Errors: Equal as assign
27.Errors: For-each-in loops are deprecated
28.Errors: Getter only
29.Errors: Identifier after number
30.Errors: Illegal character
31.Errors: in operator no object
32.Errors: Invalid array length
33.Errors: Invalid assignment left-hand side
34.Errors: Invalid const assignment
35.Errors: Invalid date
36.Errors: Invalid for-in initializer
37.Errors: Invalid for-of initializer
38.Errors: JSON bad parse
39.Errors: Malformed formal parameter
40.Errors: Malformed URI
41.Errors: Missing bracket after list
42.Errors: Missing colon after property id
43.Errors: Missing curly after function body
44.Errors: Missing curly after property list
45.Errors: Missing formal parameter
46.Errors: Missing initializer in const
47.Errors: Missing name after dot operator
48.Errors: Missing parenthesis after argument list
49.Errors: Missing parenthesis after condition
50.Errors: Missing semicolon before statement
51.Errors: More arguments needed
52.Errors: Negative repetition count
53.Errors: No non-null object
54.Errors: No properties
55.Errors: No variable name
56.Errors: Non configurable array element
57.Errors: Not a codepoint
58.Errors: Not a constructor
59.Errors: Not a function
60.Errors: Not defined
61.Errors: Precision range
62.Errors: Property access denied
63.Errors: Read-only
64.Errors: Redeclared parameter
65.Errors: Reserved identifier
66.Errors: Resulting string too large
67.Errors: Stmt after return
68.Errors: Strict Non Simple Params
69.Errors: Too much recursion
70.Errors: Typed array invalid arguments
71.Errors: Undeclared var
72.Errors: Undefined prop
73.Errors: Unexpected token
74.Errors: Unexpected type
75.Errors: Unnamed function statement
76.Errors: Unterminated string literal
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,比如网络