Created
October 13, 2017 00:59
-
-
Save caoer/3746ef10987af3447778fcaef9ab49ec to your computer and use it in GitHub Desktop.
淘宝打卡
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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