标签:去除 ace text 字符 htm 正则 color 标签 size
var str = ‘<!-- 注释1 --><h1 style="color:#00ff00;text-align: center;">ProsperLee<!-- 注释 --></h1>‘;
document.write(str.replace(/<!--[\w\W\r\n]*?-->/gmi, ‘‘)); // 去除HTML中的注释
document.write(str.replace(/<[^>]+>/g,"")); // 去除HTML标签
document.write(str.replace(/(<[^\s\/>]+)\b[^>]*>/gi,"$1>")); // 去除HTML标签中的属性
标签:去除 ace text 字符 htm 正则 color 标签 size
原文地址:https://www.cnblogs.com/my-577/p/9767922.html