Skip to content

Instantly share code, notes, and snippets.

@caoer
Created October 13, 2017 00:59
Show Gist options
  • Save caoer/3746ef10987af3447778fcaef9ab49ec to your computer and use it in GitHub Desktop.
Save caoer/3746ef10987af3447778fcaef9ab49ec to your computer and use it in GitHub Desktop.
淘宝打卡
var csv = ''
for (var i of document.querySelectorAll('.comment-wrapper ul li')) {
const name = i.childNodes[0].childNodes[1].innerHTML;
const chat = i.childNodes[1].innerText
csv = csv + name + ',';
csv = csv + chat + '\n'
}
console.log(csv)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment