返回到文章

采纳

编辑于 3年前

js去掉html中的注解

javascript

通过JavaScript去掉html中的注释,如下:

// 去掉html中的注释
function filterNotes(str) {
    var tmp = str.substring(str.indexOf("<!--"), str.lastIndexOf("-->") + 3);
    return str.replace(tmp, "");
}