保留img标签

it2022-05-05  132

 

直接看下面的代码

//去掉所有html标签

str.replace(/<[^>]*>|<\/[^>]*>/gm, "");

//保留img标签

str.replace(/<(?!img).*?>/g, "");

//保留img和p 标签

str.replace(/<(?!img|p|/p).*?>/g, ""); ---------------------  作者:寒卉1  来源:  原文:https://blog.csdn.net/u012965830/article/details/84875578  版权声明:本文为博主原创文章,转载请附上博文链接!


最新回复(0)