var str = `
<div>111</div>
<!-- 这是注释1 -->
<div>222</div>
<!-- 这是注释2 -->
`
var COMMENT_PSEUDO_COMMENT_OR_LT_BANG = new RegExp(
'<!--[\\s\\S]*?(?:-->)?'
+ '<!---+>?' // A comment with no body
+ '|<!(?![dD][oO][cC][tT][yY][pP][eE]|\\[CDATA\\[)[^>]*>?'
+ '|<[?][^>]*>?', // A pseudo-comment
'g');
str = str.replace(COMMENT_PSEUDO_COMMENT_OR_LT_BANG, '')
发布评论
评论(2)
在 Stack Overflow 看到一个更好的
https://stackoverflow.com/que...
这网站好像被墙了,我复制粘贴过来吧
试试 cheerio 吧,一个可以在 node.js 端跑 jquery 风格 API 的工具。