Created
October 29, 2016 14:27
-
-
Save mayukojpn/315a87c1af5e7ad0bee11736db54c60b to your computer and use it in GitHub Desktop.
Facebook のコメントを取り出すコード
This file contains 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 list=document.getElementsByClassName('UFIList')[0].childNodes[2].childNodes[0]; | |
for(var i=0;i<=list.length;i++){ | |
if(list[i].className!==' UFIReplyList'){ | |
var content = list[i].childNodes[0].childNodes[1].childNodes[0].childNodes[1].childNodes[0].childNodes[0].childNodes; | |
document.write( | |
i+',' | |
+content[0].innerText+',' //comment | |
+content[0].childNodes[0].href+',"'//comment | |
+content[1].innerText//comment | |
+'"<br>'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment