我的文字包含'和'字符,所以我想使用jquery替换'as 1和'为2
EX:
<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>
答案 0 :(得分:0)
下面:
var rep = ['\'', '"', '!', '@', '#'];
for (var i = 0; i < rep.length; i++)
{
str = str.replace(rep[i], ""+(i+1));
}
注意在替换时如何使用数组rep
中的特殊字符索引。