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