0

我的文本包含 ' 和 " 字符,所以我想使用 jquery 替换而不是 ' 作为 1 和 " 作为 2

前任:

<span style="color: #ff0000; font-style: italic; text-decoration: underline line-through">text</span>

而不是特殊字符我想放 1,2,3,4 等....结果将是

<span style=1color: #ff0000; font-style: italic; text-decoration: underline line-through1>text</span>
4

1 回答 1

0

这里:

var rep = ['\'', '"', '!', '@', '#'];

for (var i = 0; i < rep.length; i++)
{
    str = str.replace(rep[i], ""+(i+1));
}

rep注意替换时如何利用数组中特殊字符的索引。

于 2013-07-01T12:02:51.980 回答