📅  最后修改于: 2022-03-11 14:55:12.883000             🧑  作者: Mango
var res = $('body *').contents().map(function () {
if (this.nodeType == 3 && this.nodeValue.trim() != "")
return this.nodeValue.trim();
}).get().join(" ");
console.log(res);