去除html字符串里面的标签

function removeHTMLTag(str) {
    str = str.replace(/]*?>[\s\S]*?<\/script>/ig, ''); //去掉

你可能感兴趣的:(js,去除HTML字符串里面的标签)