使用正则表达式去除html富文本中的style样式
2019-11-02 本文已影响0人
laogui_
1,去除style样式的正则表达式:
String regEx = "style=\"(.*?)\""
2,使用正则表达式去除指定标签的style属性
var match = match.replace(/style=\"(.*)\"/gi,'class="img-responsive"'); //style 属性替换成 class="img-responsive"
1,去除style样式的正则表达式:
String regEx = "style=\"(.*?)\""
2,使用正则表达式去除指定标签的style属性
var match = match.replace(/style=\"(.*)\"/gi,'class="img-responsive"'); //style 属性替换成 class="img-responsive"