标签: node.js web-scraping cheerio
我必须在网站上获得<script>标记的内容。但是,有许多<script>个代码且没有id属性。当我这样称呼它时,Cheerio没有获得<script>标记内容:
<script>
id
$('script').text()
或
.html();
这样做的方法是什么?
答案 0 :(得分:1)
您应该使用$('script').html()
$('script').html()