Last active
November 22, 2015 04:23
-
-
Save mayukojpn/6e0c4795dfb77de84a1e to your computer and use it in GitHub Desktop.
Facebook コメントをもとに名簿をつくる
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 list=document.getElementsByClassName('UFIList')[0].childNodes[2].childNodes; | |
| 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+',' //名前 | |
| +content[0].childNodes[0].href+',"' //Facebook URL | |
| +content[1].innerText //コメント内容 | |
| +'"<br>' | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment