正则表达式替换字符串中的html标签

时间:2022-05-02 17:45:32

正则表达式替换字符串中的html标签

···
var newStr = str.replace(/<[^>]+>/g, '');
···