文章列表
As ECMA’s define, there are some pattern in newString parameter, so, be careful about it.
(From ECMA-262 3rd Edition, but as test IE8 don’t support it.)
Specifying a string as a parameter
The replacement
string can include the following special replacement patterns:
Pattern
Inserts
...
转义字符串(Escape Sequence)也称字符实体(Character Entity)。在HTML中,定义转义字符串的原因有两个:
第一个原因是像“<”和“>”这类符号已经用来表示HTML标签,因此就不能直接当作文本中的符号来使用。为了在HTML文档中使用这些符号,就需要定义它的转义字符串。当解释程序遇到这类字符串时就把它解释为真实的字符。在输入转义字符串时,要严格遵守字母大小写的规则。第二个原因是,有些字符在ASCII字符集中没有定义,因此需要使用转义字符串来表示。表18-3是其中的几个转义字符串。
字符
十进制
转义字符
"
&qu ...