📜  网站到单词数组 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:12.883000             🧑  作者: Mango

代码示例1
var res = $('body  *').contents().map(function () {
    if (this.nodeType == 3 && this.nodeValue.trim() != "") 
        return this.nodeValue.trim();
}).get().join(" ");
console.log(res);